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