blob: 1f07f263fef2d77edf3637bd01f8735e7a08b742 [file] [log] [blame]
// { 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-message "private" }
};
}
void S::test () {
NS::X::i; // { dg-error "this context" }
}