sv2v/test/error/size_cast_x_lit.sv

6 lines
144 B
Systemverilog

// pattern: size cast width 1'bx is not an integer
// location: size_cast_x_lit.sv:4:13
module top;
initial $display((1'bx)'(2));
endmodule