mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 01:34:16 +02:00
9 lines
278 B
Systemverilog
9 lines
278 B
Systemverilog
// pattern: too many bindings specified for parameter overrides in instance "e" of module "example": 3 specified \(1, 2, 3\), but only 2 available \("P", "Q"\)
|
|
module example;
|
|
parameter P = 1;
|
|
parameter Q = 1;
|
|
endmodule
|
|
module top;
|
|
example #(1, 2, 3) e();
|
|
endmodule
|