blob: 79b28c2239fe1025396a6f364cc0b9740a18002a [file] [log] [blame]
Douglas Gregord9b600c2010-01-12 17:52:59 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3template<typename T, typename U>
4struct X0 : T::template apply<U> {
5 X0(U u) : T::template apply<U>(u) { }
6};
Douglas Gregor84d0a192010-01-12 21:28:44 +00007
8template<typename T, typename U>
9struct X1 : T::apply<U> { }; // expected-error{{missing 'template' keyword prior to dependent template name 'T::apply'}}
10
11template<typename T>
12struct X2 : vector<T> { }; // expected-error{{unknown template name 'vector'}}
Douglas Gregor9edad9b2010-01-14 17:47:39 +000013
14namespace PR6031 {
15 template<typename T>
16 struct A;
17
18 template <class X>
19 struct C { };
20
21 template <class TT>
22 struct II {
23 typedef typename A<TT>::type type;
24 };
25
26 template <class TT>
27 struct FI : II<TT>
28 {
29 C<typename FI::type> a;
30 };
31
32 template <class TT>
33 struct FI2
34 {
35 C<typename FI2::type> a; // expected-error{{no type named 'type' in 'struct PR6031::FI2'}} \
36 // expected-error{{C++ requires a type specifier for all declarations}}
37 };
38
39 template<typename T>
40 struct Base {
41 class Nested { };
42 template<typename U> struct MemberTemplate { };
43 int a;
44 };
45
46 template<typename T>
47 struct HasDepBase : Base<T> {
48 int foo() {
49 class HasDepBase::Nested nested;
50 typedef typename HasDepBase::template MemberTemplate<T>::type type;
51 return HasDepBase::a;
52 }
53 };
54
55 template<typename T>
56 struct NoDepBase {
57 int foo() {
58 class NoDepBase::Nested nested; // expected-error{{'Nested' does not name a tag member in the specified scope}}
59 typedef typename NoDepBase::template MemberTemplate<T>::type type; // expected-error{{'MemberTemplate' following the 'template' keyword does not refer to a template}} \
60 // FIXME: expected-error{{expected an identifier or template-id after '::'}} \
61 // FIXME: expected-error{{unqualified-id}}
62 return NoDepBase::a; // expected-error{{no member named 'a' in 'struct PR6031::NoDepBase'}}
63 }
64 };
65}
Douglas Gregor7d3f5762010-01-15 01:44:47 +000066
67namespace Ambig {
68 template<typename T>
69 struct Base1 {
70 typedef int type; // expected-note{{member found by ambiguous name lookup}}
71 };
72
73 struct Base2 {
74 typedef float type; // expected-note{{member found by ambiguous name lookup}}
75 };
76
77 template<typename T>
78 struct Derived : Base1<T>, Base2 {
79 typedef typename Derived::type type; // expected-error{{member 'type' found in multiple base classes of different types}}
80 type *foo(float *fp) { return fp; }
81 };
82
83 Derived<int> di; // expected-note{{instantiation of}}
84}