blob: 5c244112a32944db77f2c8fe2cce176828b1fbf3 [file] [log] [blame]
// PR c++/35109
struct C;
void f() {
struct A {
friend struct B;
friend struct C;
void g()
{
B *b; // { dg-error "not declared" }
C* c; // OK, finds ::C
}
};
C *c; // OK, finds ::C
struct B {};
B *b; // OK, now it isn't hidden
}