mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
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
|