iverilog/ivtest/ivltests/decl_before_use3.v

11 lines
84 B
Verilog

module test();
initial begin
->e;
$display("FAILED");
end
event e;
endmodule