sv2v/test/error/break_outside_loop.sv

5 lines
87 B
Systemverilog

// pattern: encountered break outside of loop
module top;
initial break;
endmodule