mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 17:54:22 +02:00
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
|