sv2v/test/error/port_packed_first.sv

6 lines
166 B
Systemverilog

// 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