blob: 94f0deae78c9b353869b5861d768e5a705888a1d [file] [log] [blame]
// PR c++/22489
namespace N { }
struct T
{
T () { }
};
void
bar ()
{
struct U : public T
{
void baz ()
{
using namespace N;
}
} u;
u.baz();
}