We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25aad5 commit 88588eeCopy full SHA for 88588ee
regression/verilog/expressions/negation1.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+negation1.sv
3
+--bound 0
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+Lowering for negation on three-valued logic is missing.
regression/verilog/expressions/negation1.sv
@@ -0,0 +1,11 @@
+module main;
+
+ property01: assert final (!0===1);
+ property02: assert final (!1===0);
+ property03: assert final (!2===0);
+ property04: assert final ($bits(!4'd1)==1);
+ property05: assert final (!1'bx===1'bx);
+ property06: assert final (!2'bxx===1'bx);
+ property07: assert final (!1'bz===1'bx);
10
11
+endmodule
0 commit comments