rt_gccstream/gcc/testsuite/g++.dg/other/friend4.C

9 lines
222 B
C

// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// Misleading diagnostic
struct A
{
friend void A::foo(); // { dg-error "implicitly friends" }
friend A::~A(); // { dg-error "implicitly friends" }
};