mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
10 lines
243 B
Systemverilog
10 lines
243 B
Systemverilog
// pattern: instance "bad" of "Example" is missing values for parameters without defaults: "Y"
|
|
interface Example;
|
|
parameter X = 1;
|
|
parameter Y;
|
|
endinterface
|
|
module top;
|
|
Example #(.Y(1)) good();
|
|
Example #(.Y()) bad();
|
|
endmodule
|