iverilog/ivtest/ivltests/always_latch_no_sens.v

10 lines
112 B
Verilog

module test;
logic y;
always_latch begin
y = 1'b0;
end
initial $display("FAILED");
endmodule