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 8fe2c5e commit 3ca84d1Copy full SHA for 3ca84d1
regression/verilog/modules/ports9.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+ports9.sv
3
+--bound 1
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+This gives the wrong answer.
regression/verilog/modules/ports9.sv
@@ -0,0 +1,15 @@
+module sub(input in, output logic data);
+
+ assign data = in;
+endmodule
+module main;
+ logic subout;
10
+ sub sub_inst(.data(subout));
11
12
+ // The value of the output needs to be able to change
13
+ cover property (##1 subout != $past(subout));
14
15
0 commit comments