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 150f03a commit 89583c8Copy full SHA for 89583c8
regression/verilog/SVA/recursive_property1.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+recursive_property1.sv
3
+--bound 10
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+The parameter list fails to parse.
regression/verilog/SVA/recursive_property1.sv
@@ -0,0 +1,14 @@
+module main(input clk);
+
+ reg [31:0] x = 0;
+ always_ff @(posedge clk) x = !x;
+ // 1800-2017 16.12.17
+ property prop_always(p);
+ p and (1 |=> prop_always(p))
+ endproperty
10
11
+ // expected to pass
12
+ assert property (prop_always(x <= 1));
13
14
+endmodule
0 commit comments