mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
These are now kept while still supporting optional trailing commas and without introducing pass-through inconsistencies.
10 lines
181 B
Systemverilog
10 lines
181 B
Systemverilog
// pattern: illegal mix of ordered and named port connections
|
|
module example(
|
|
input a, b, c
|
|
);
|
|
endmodule
|
|
module top;
|
|
wire a, b, c;
|
|
example e(.a(1), .b(2), ,);
|
|
endmodule
|