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