mirror of https://github.com/zachjs/sv2v.git
9 lines
211 B
Systemverilog
9 lines
211 B
Systemverilog
|
|
// pattern: too many bindings specified for parameter overrides in instance "e" of "example"
|
||
|
|
module example;
|
||
|
|
parameter P = 1;
|
||
|
|
parameter Q = 1;
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
example #(1, 2, 3) e();
|
||
|
|
endmodule
|