mirror of https://github.com/zachjs/sv2v.git
10 lines
234 B
Systemverilog
10 lines
234 B
Systemverilog
|
|
// pattern: instance "bad" of "Example" is missing values for parameters without defaults: "Y"
|
||
|
|
module Example;
|
||
|
|
parameter X = 1;
|
||
|
|
parameter Y;
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
Example #(.Y(1)) good();
|
||
|
|
Example #(1) bad();
|
||
|
|
endmodule
|