Files
sv2v/test/error/binding_not_found_port.sv

9 lines
229 B
Systemverilog
Raw Permalink Normal View History

2024-12-15 00:42:13 -05:00
// pattern: unknown bindings "w", "z" specified for port connections in instance "e" of module "example", 2 available \("x", "y"\)
2021-06-01 13:09:36 -04:00
module example(
input x, y
);
endmodule
module top;
example e(.w(1), .z(1'b0));
endmodule