binding_mix_port.sv 171 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
// pattern: illegal mix of ordered and named port connections
module example(
    input a, b, c
);
endmodule
module top;
    wire a, b, c;
    example e(1, .*);
endmodule