aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/packed12.C
blob: 2ad14de102da92efedb5ce501ba19d24624d36a5 (plain)
1
2
3
4
5
6
// PR c++/80972

struct A { int i; };
struct B { A a; } __attribute__((packed));

A a = B().a;