Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / union2.C
blob9e0666eae57b970d9a5bfb147327a5f15e975614
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;