Files
sv2v/test/error/continue_inside_fork.sv

9 lines
150 B
Systemverilog
Raw Permalink Normal View History

2021-03-09 14:18:37 -05:00
// pattern: encountered continue inside fork-join
module top;
initial
while (1)
fork
continue;
join
endmodule