PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / nsdmi-union2.C
blob08217d799db975d08957634caeaea3392f99dd68
1 // PR c++/79360
2 // { dg-do compile { target c++14 } }
4 union U
6   enum E { e };
7 };
9 struct A
11   U u{};