15 lines
156 B
Coq
15 lines
156 B
Coq
|
|
module bug();
|
||
|
|
|
||
|
|
localparam integer a = 1;
|
||
|
|
|
||
|
|
integer b = 2;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
if (a == b)
|
||
|
|
$display("FAILED");
|
||
|
|
else
|
||
|
|
$display("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|