1 // PR c++/82764
2 // { dg-do compile { target c++11 } }
3 
4 struct Empty {};
5 struct Empty2 : Empty {};
6 
7 struct A : Empty2
8 {
9   int x {1};
10   int y {2};
11 };
12 
13 struct B
14 {
15   A a {};
16 };
17 
18 B b;
19