mirror of https://github.com/zachjs/sv2v.git
5 lines
107 B
Systemverilog
5 lines
107 B
Systemverilog
|
|
// pattern: size cast width 1'bx is not an integer
|
||
|
|
module top;
|
||
|
|
initial $display((1'bx)'(2));
|
||
|
|
endmodule
|