mirror of https://github.com/zachjs/sv2v.git
8 lines
180 B
Systemverilog
8 lines
180 B
Systemverilog
|
|
// pattern: instance "e" of "Example" is missing values for parameters without defaults: "X"
|
||
|
|
module Example;
|
||
|
|
parameter type X;
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
Example e();
|
||
|
|
endmodule
|