1 // PR c++/59480
2 
3 class test {
4   friend int foo(bool = true);  // { dg-error "14:friend declaration" }
5   template<typename> friend int bar(bool = true);  // { dg-error "33:friend declaration" }
6 };
7