12 lines
150 B
Coq
12 lines
150 B
Coq
|
|
// Check that negedge event controls can not be used with named events.
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
event e;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
@(negedge e);
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|