OSDN Git Service

2014-02-26 Fabien Chene <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / union2.C
1 /* PR c++/40557 */
2 /* { dg-do compile } */
3
4 struct A
5 {
6   typedef int X;
7 };
8
9 template<int> union B
10 {
11   A::X x;
12 };