iverilog/ivtest/ivltests/named_fork.v

6 lines
94 B
Verilog

module top;
initial fork : named_fork
$display("PASSED");
join : named_fork
endmodule