[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / array5.C
bloba5435806747d67a070addfe34a2201e1c4cb25bd
1 // PR c++/15427
3 template<class T>
4 struct A
6   T foo;
7 };
9 template<class T>
10 struct B
12   A<int> _squares[2];