PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / union2.C
blob25f1e086f267b212c59886eefe5d7d6940b66f0d
1 /* PR c++/40557 */
2 /* { dg-do compile } */
4 struct A
6   typedef int X;
7 };
9 template<int> union B
11   A::X x;