mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
8 lines
171 B
Systemverilog
8 lines
171 B
Systemverilog
// pattern: pattern index 1'bx is not an integer
|
|
// location: struct_non_integer.sv:4:5
|
|
module top;
|
|
struct packed {
|
|
logic x;
|
|
} s = '{ 1'bx: 1 };
|
|
endmodule
|