blob: 96425353911f27761dfb6d72c81efdc11f356358 [file] [log] [blame]
// { dg-do compile }
// Origin: Jay Cox <jaycox@gimp.org>
// PR c++/1016: Name lookup for injected friend class
class B;
namespace N {
class A {
friend class B;
B* b;
};
}