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 
15