Files
sv2v/test/error/for_loop_init_bare.sv

5 lines
136 B
Systemverilog
Raw Permalink Normal View History

2021-07-05 18:00:12 -04:00
// pattern: for_loop_init_bare\.sv:3:19: Parse error: expected assignment operator
module top;
initial for (a,; 1; a++) ;
endmodule