mirror of https://github.com/zachjs/sv2v.git
7 lines
132 B
Systemverilog
7 lines
132 B
Systemverilog
|
|
// pattern: pattern index 1'bx is not an integer
|
||
|
|
module top;
|
||
|
|
struct packed {
|
||
|
|
logic x;
|
||
|
|
} s = '{ 1'bx: 1 };
|
||
|
|
endmodule
|