blob: 8432e32d85a0cf4fd31d60f71683721491bad863 [file] [log] [blame]
// Copyright (C) 2007 Free Software Foundation
// Contributed by Ollie Wild <aaw@google.com>
// { dg-do compile }
// Verify that a friend class is hidden even if it is hidden by a non-builtin
// function name.
namespace M {
void F (void);
class F;
}
namespace N {
void F(void);
class A {
friend class F;
};
}
using namespace M;
using namespace N;
class F *b;