module top();
event e1;
evnt i_evnt(e1);
endmodule
module evnt(input event e1);
/* Program body
*/
endmodule
when this modules complied it give error
A Verilog keyword was found where an identifier was expected.
How to pass event as argument to module?