mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
9 lines
236 B
Systemverilog
9 lines
236 B
Systemverilog
// pattern: unknown binding "z" specified for port connections in instance "e" of module "example", 2 available \("x", "y"\)
|
|
module example(
|
|
input x, y
|
|
);
|
|
endmodule
|
|
module top;
|
|
example e(.x(1'b1), .y(1'b0), .z(1'b0));
|
|
endmodule
|