1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// { dg-do compile } // Origin: Albert Chin <bugzilla-gcc@thewrittenword.com> // Wolfgang Bangerth <bangerth@dealii.org> // PR c++/14513, unqualified lookup of friend class. struct S { void test (void); }; namespace NS { class X { friend class S; static int *i; // { dg-error "private" } }; } void S::test () { NS::X::i; // { dg-error "this context" } }