11 lines
145 B
Coq
11 lines
145 B
Coq
|
|
module top;
|
||
|
|
reg q, clk, d;
|
||
|
|
|
||
|
|
always_ff @(posedge clk) begin
|
||
|
|
#0 q <= d;
|
||
|
|
end
|
||
|
|
|
||
|
|
initial $display("Expected compile failure!");
|
||
|
|
|
||
|
|
endmodule
|