iverilog/ivtest/ivltests/named_event_posedge_fail.v

12 lines
150 B
Verilog

// Check that posedge event controls can not be used with named events.
module test;
event e;
initial begin
@(posedge e);
end
endmodule