1 // PR c++/15507
2 
3 struct A {
4   // empty
5 };
6 
7 struct B : A {
8   int b;
9 };
10 
11 union U {
12   A a;
13   B b;
14 };
15