continue_inside_fork.sv 150 Bytes
Newer Older
1 2 3 4 5 6 7 8
// pattern: encountered continue inside fork-join
module top;
    initial
        while (1)
        fork
            continue;
        join
endmodule