mirror of https://github.com/zachjs/sv2v.git
9 lines
196 B
Systemverilog
9 lines
196 B
Systemverilog
|
|
// pattern: unknown bindings "w", "z" specified for port connections in instance "e" of "example"
|
||
|
|
module example(
|
||
|
|
input x, y
|
||
|
|
);
|
||
|
|
endmodule
|
||
|
|
module top;
|
||
|
|
example e(.w(1), .z(1'b0));
|
||
|
|
endmodule
|