struct_out_of_bounds.sv 200 Bytes
Newer Older
1
// pattern: pattern index 1 is out of bounds for struct packed \{..logic x;.\}
2
// location: struct_out_of_bounds.sv:4:5
3 4 5 6 7
module top;
    struct packed {
        logic x;
    } s = '{ 1: 1 };
endmodule