blob: a5435806747d67a070addfe34a2201e1c4cb25bd [file] [log] [blame]
// PR c++/15427
template<class T>
struct A
{
T foo;
};
template<class T>
struct B
{
A<int> _squares[2];
};