iverilog/ivtest/ivltests/br_gh4a.v

10 lines
96 B
Verilog

module test;
initial fork
reg a;
a = 1'b0;
$display("PASSED");
join
endmodule