iverilog/ivtest/ivltests/pr2051694.v

5 lines
90 B
Verilog

module test_unknown_in_always_star;
reg [2:0] x;
always @* x = {unknown, 1'b0};
endmodule