size_cast_neg_var_1.sv 174 Bytes
Newer Older
1
// pattern: size cast width 1'sb1 is not a positive integer
2
// location: size_cast_neg_var_1.sv:5:13
3 4 5 6
module top;
    wire x = 0;
    initial $display((1'sb1)'(x));
endmodule