OSDN Git Service

PR c++/29363
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / array5.C
1 // PR c++/15427
2
3 template<class T>
4 struct A
5 {
6   T foo;
7 };
8
9 template<class T>
10 struct B
11 {
12   A<int> _squares[2];
13 };
14