blob: c3a824a91d73d45f9835a1da7ee99b4c1330cb30 [file] [log] [blame]
// PR c++/84663
struct S {
typedef S T[8];
int f : -1ULL; // { dg-warning "exceeds its type" }
S () { struct { T d; } e[]; } // { dg-error "size" }
};