mirror of https://github.com/zachjs/sv2v.git
6 lines
168 B
Systemverilog
6 lines
168 B
Systemverilog
|
|
// pattern: declarations `output x` and `wire x \[1:0\]` are incompatible due to different unpacked dimensions
|
||
|
|
module top(x);
|
||
|
|
output x;
|
||
|
|
wire x [1:0];
|
||
|
|
endmodule
|