size_cast_x_var.sv 123 Bytes
Newer Older
1 2
// pattern: size cast width 1'bx is not an integer
module top;
3 4
    wire x = 0;
    initial $display((1'bx)'(x));
5
endmodule