Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions regression/verilog/modules/port_connection1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
port_connection1.sv

^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd appreciate a note saying what is going wrong here.

--
This does not parse.
16 changes: 16 additions & 0 deletions regression/verilog/modules/port_connection1.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module M(input [31:0] some_name);

initial assert (some_name == 123);

endmodule

module main;

// typedef with the same name as a port
typedef bit [31:0] some_name;

// This fails to parse with Icarus Verilog,
// but works with VCS, Questa, Xcelium, Riviera
M my_instance(.some_name(123));

endmodule
Loading