[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / error55.C
blob41f9595ae9ae36fc78b4582e06ef6efc85e52d3a
1 // Check that template template parameters get printed properly in error
2 // messages.
4 template <template <class A> class B>
5 struct Y
7   B<5> y;  // { dg-error "for 'template<class A> class B'" }
8 };