// RUN: clang-cc -fsyntax-only -verify %s namespace N { } template struct A { void f(); }; template struct B : A { using A::f; void g() { using namespace N; f(); } }; template struct B;