struct_extra_unnamed_field.sv 232 Bytes
Newer Older
1
// pattern: pattern '\{..1,..2.\} doesn't have the same number of items as struct packed \{..logic x;.\}
2
// location: struct_extra_unnamed_field.sv:4:5
3 4 5 6 7
module top;
    struct packed {
        logic x;
    } x = '{ 1, 2 };
endmodule