sv2v/test/basic/array.v

6 lines
80 B
Verilog

module top;
reg [5:0] a;
wire [5:0] b;
always @(*) a = b;
endmodule