mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
8 lines
200 B
Systemverilog
8 lines
200 B
Systemverilog
// pattern: pattern index 1 is out of bounds for struct packed \{..logic x;.\}
|
|
// location: struct_out_of_bounds.sv:4:5
|
|
module top;
|
|
struct packed {
|
|
logic x;
|
|
} s = '{ 1: 1 };
|
|
endmodule
|