mirror of https://github.com/zachjs/sv2v.git
10 lines
171 B
Systemverilog
10 lines
171 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(1, .*);
|
||
|
|
endmodule
|