port_packed_first.sv 166 Bytes
Newer Older
1 2 3 4 5
// pattern: declarations `output \[1:0\] x` and `wire x` are incompatible due to different packed dimensions
module top(x);
    output [1:0] x;
    wire x;
endmodule