2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-08-28 23:18:15 +08:00
|
|
|
|
|
|
|
template<typename T> struct A {
|
|
|
|
void f() { }
|
2009-11-18 10:36:19 +08:00
|
|
|
struct N { }; // expected-note{{target of using declaration}}
|
2009-08-28 23:18:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> struct B : A<T> {
|
|
|
|
using A<T>::f;
|
2009-11-18 10:36:19 +08:00
|
|
|
using A<T>::N; // expected-error{{dependent using declaration resolved to type without 'typename'}}
|
2009-08-28 23:18:15 +08:00
|
|
|
|
|
|
|
using A<T>::foo; // expected-error{{no member named 'foo'}}
|
2009-12-08 15:46:18 +08:00
|
|
|
using A<double>::f; // expected-error{{using declaration refers into 'A<double>::', which is not a base class of 'B<int>'}}
|
2009-08-28 23:18:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
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() { };
|
|
|
|
};
|
2009-08-29 08:56:38 +08:00
|
|
|
|
|
|
|
template <typename T> struct D : A<T> {
|
|
|
|
using A<T>::f;
|
|
|
|
|
|
|
|
void f();
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> void D<T>::f() { }
|
2009-08-29 09:06:32 +08:00
|
|
|
|
|
|
|
template<typename T> struct E : A<T> {
|
|
|
|
using A<T>::f;
|
|
|
|
|
|
|
|
void g() { f(); }
|
|
|
|
};
|
2009-12-05 06:46:56 +08:00
|
|
|
|
|
|
|
namespace test0 {
|
|
|
|
struct Base {
|
|
|
|
int foo;
|
|
|
|
};
|
|
|
|
template<typename T> struct E : Base {
|
|
|
|
using Base::foo;
|
|
|
|
};
|
|
|
|
|
|
|
|
template struct E<int>;
|
|
|
|
}
|