sv2v/test/basic/size_cast.v

7 lines
118 B
Coq
Raw Normal View History

module top;
localparam BW = 3;
wire [2:0] test;
assign test = 0;
initial #1 $display(test);
endmodule