sv2v/test/error/run_on_decl_stmt.sv

7 lines
166 B
Systemverilog

// pattern: run_on_decl_stmt.sv:4:20: Parse error: unexpected comma-separated declarations
module top;
initial begin
integer x, byte y;
end
endmodule