// { dg-do compile } // Origin: Albert Chin // Wolfgang Bangerth // 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" } }