2009-08-28 23:18:15 +08:00
|
|
|
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
template<typename T> struct A {
|
|
|
|
void f() { }
|
|
|
|
struct N { };
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> struct B : A<T> {
|
|
|
|
using A<T>::f;
|
|
|
|
using A<T>::N;
|
|
|
|
|
|
|
|
using A<T>::foo; // expected-error{{no member named 'foo'}}
|
|
|
|
using A<double>::f; // expected-error{{using declaration refers into 'A<double>::', which is not a base class of 'B'}}
|
|
|
|
};
|
|
|
|
|
|
|
|
B<int> a; // expected-note{{in instantiation of template class 'struct B<int>' requested here}}
|
2009-08-29 01:57:07 +08:00
|
|
|
|
|
|
|
template<typename T> struct C : A<T> {
|
|
|
|
using A<T>::f;
|
|
|
|
|
|
|
|
void f() { };
|
|
|
|
};
|