blob: a1cf355c890e153e0dff6574dcee9907b6834314 [file] [log] [blame]
Anders Carlsson0d8df782009-08-29 19:37:28 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
Douglas Gregor48c32a72009-11-17 06:07:40 +00003namespace N { }
4
Anders Carlsson0d8df782009-08-29 19:37:28 +00005template<typename T>
6struct A {
7 void f();
8};
9
10template<typename T>
11struct B : A<T> {
12 using A<T>::f;
13
14 void g() {
Douglas Gregor48c32a72009-11-17 06:07:40 +000015 using namespace N;
Anders Carlsson0d8df782009-08-29 19:37:28 +000016 f();
17 }
18};
19
20template struct B<int>;