1 // PR c++/79360
2 // { dg-do compile { target c++14 } }
3 
4 union U
5 {
6   enum E { e };
7 };
8 
9 struct A
10 {
11   U u{};
12 };
13