11 lines
140 B
Coq
11 lines
140 B
Coq
|
|
module top;
|
||
|
|
reg q, en, d;
|
||
|
|
|
||
|
|
always_latch begin
|
||
|
|
if (en) #0 q <= d;
|
||
|
|
end
|
||
|
|
|
||
|
|
initial $display("Expected compile failure!");
|
||
|
|
|
||
|
|
endmodule
|