[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / array25.C
blob4f3ccbf702da6dad255e8a606b9307cbf82d31d8
1 // PR c++/55249
3 template <typename _Tp> struct A
5   _Tp _M_instance[1];
6 };
7 template <class> struct inner_type
9     inner_type () {}
10     inner_type (inner_type &);
11     inner_type (const inner_type &) {}
14 int
15 main ()
17     A <inner_type <int> > a, b = a;