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.
2 parents 734c6e7 + dab99e3 commit 8c12e38Copy full SHA for 8c12e38
regression/verilog/SVA/sequence4.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+sequence4.sv
3
+--bound 10
4
+^EXIT=10$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+sequence concatenation is not supported by the BMC engine
regression/verilog/SVA/sequence4.sv
@@ -0,0 +1,14 @@
+module main;
+
+ reg [31:0] x;
+ wire clk;
+ initial x=0;
+ always @(posedge clk)
+ x<=x+1;
10
11
+ // sequence concatenation
12
+ initial p0: assert property (x == 0 ##1 x == 1 ##1 x == 2);
13
14
+endmodule
0 commit comments