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 883173b commit 81e3778Copy full SHA for 81e3778
regression/verilog/modules/ports4.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+ports4.v
3
+--bound 0
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+The parameter in the module instance port binding is not expanded.
regression/verilog/modules/ports4.v
@@ -0,0 +1,13 @@
+module submodule(input [7:0] data);
+
+ always assert p0: data == 123;
+endmodule
+module main#(parameter MY_PARAMETER = 123)();
+ submodule instance(MY_PARAMETER);
10
11
+ always assert p1: MY_PARAMETER == 123;
12
13
0 commit comments