blob: 2ad14de102da92efedb5ce501ba19d24624d36a5 [file] [log] [blame]
// PR c++/80972
struct A { int i; };
struct B { A a; } __attribute__((packed));
A a = B().a;