xref: /Universal-ctags/Units/parser-verilog.r/verilog-memleak.d/input.v (revision 7bd9f6d1496ad92b345e2c6ff46fece22a35df44)
1// Include module declaration in a comment
2// module wrong;
3// endmodule
4`define DEFINE
5
6module mod (
7    a,
8    b,c,
9    d , e ,
10    f,
11    g
12);
13
14parameter PARAM = 1;
15
16input a,b, c, d ;
17output e;
18output f;
19inout g;
20
21wire a,b,c,d,e;
22reg f;
23wire g;
24real k;
25integer l;
26
27task add;
28    input x, y;
29