mirror of https://github.com/zachjs/sv2v.git
10 lines
205 B
Systemverilog
10 lines
205 B
Systemverilog
|
|
// pattern: run_on_decl_package\.sv:3:16: Parse error: unexpected token in declaration
|
||
|
|
package P;
|
||
|
|
integer x, byte y;
|
||
|
|
localparam Z = 1;
|
||
|
|
endpackage
|
||
|
|
|
||
|
|
module top;
|
||
|
|
initial $display(P::Z);
|
||
|
|
endmodule
|