mirror of https://github.com/zachjs/sv2v.git
12 lines
216 B
Systemverilog
12 lines
216 B
Systemverilog
|
|
// pattern: illegal mix of ordered and named parameter overrides
|
||
|
|
module example #(
|
||
|
|
parameter P = 1, Q = 2
|
||
|
|
) (
|
||
|
|
input a, b, c
|
||
|
|
);
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
wire a, b, c;
|
||
|
|
example #(1, .Q(2)) e(.*);
|
||
|
|
endmodule
|