iverilog/ivtest/ivltests/pr3441576.v

6 lines
96 B
Verilog

module top;
reg foo;
always @* foo <= 0;
initial #1 $display("foo is %b", foo);
endmodule