sv2v/test/nosim/do_while.sv

6 lines
76 B
Systemverilog
Raw Normal View History

module top;
initial do
$display("hi");
while (0);
endmodule