sv2v/test/error/size_cast_x.sv

5 lines
107 B
Systemverilog

// pattern: size cast width 1'bx is not an integer
module top;
initial $display((1'bx)'(2));
endmodule