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 6bed9f0 commit 1b985fdCopy full SHA for 1b985fd
regression/verilog/modules/port_connection1.desc
@@ -0,0 +1,7 @@
1
+KNOWNBUG
2
+port_connection1.sv
3
+
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
regression/verilog/modules/port_connection1.sv
@@ -0,0 +1,15 @@
+module M(input [31:0] some_name);
+ initial assert (some_name == 123);
+endmodule
+module main;
8
9
+ // typedef with the same name as a port
10
+ typedef bit [31:0] some_name;
11
12
+ // This fails with Icarus Verilog
13
+ M instance(.some_name(123));
14
15
0 commit comments