PR c++/59480, DR 136
[official-gcc.git] / gcc / testsuite / g++.dg / other / friend13.C
blob6cdb322f1dfc84efe318c1a52f4cf3d276439c99
1 // PR c++/59480
3 void f(int, int, int=0);  // { dg-message "6:previous" }
4 class C {
5   friend void f(int, int=0, int) {}  // { dg-error "15:friend declaration" }
6 };