re PR c++/59480 (Missing error diagnostic: friend declaration specifying a default...
[official-gcc.git] / gcc / testsuite / g++.dg / other / friend9.C
blob16b4f57335d3aad28621935e5ccc99e94d13841e
1 // PR c++/59480
3 template<typename>
4 class test {
5   friend int foo(bool = true);  // { dg-error "14:friend declaration" }
6   template<typename> friend int bar(bool = true);  // { dg-error "33:friend declaration" }
7 };
9 template class test<bool>;