sv2v/test/error/binding_mix_port_trail.sv

10 lines
181 B
Systemverilog

// pattern: illegal mix of ordered and named port connections
module example(
input a, b, c
);
endmodule
module top;
wire a, b, c;
example e(.a(1), .b(2), ,);
endmodule