sv2v/test/basic/fork_join.sv

8 lines
114 B
Systemverilog

module top;
initial
fork
$display("A");
$display("B");
join
endmodule