blob: 3a97efac19ed45076966d71a918afa6096d1982b [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregoradcac882008-12-01 23:54:00 +00002
3// Errors
4export class foo { }; // expected-error {{expected template}}
Douglas Gregord5a423b2009-09-25 18:43:00 +00005template x; // expected-error {{C++ requires a type specifier for all declarations}} \
6 // expected-error {{does not refer}}
Douglas Gregor7cdbc582009-07-22 23:48:44 +00007export template x; // expected-error {{expected '<' after 'template'}}
Douglas Gregor51ffb0c2009-11-25 18:55:14 +00008export template<class T> class x0; // expected-warning {{exported templates are unsupported}}
Douglas Gregorcb821d02010-04-08 21:33:23 +00009template < ; // expected-error {{parse error}} expected-warning {{declaration does not declare anything}}
Douglas Gregorf6b11852009-10-08 15:14:33 +000010template <template X> struct Err1; // expected-error {{expected '<' after 'template'}} \
11// expected-error{{extraneous}}
12template <template <typename> > struct Err2; // expected-error {{expected 'class' before '>'}} \
13// expected-error{{extraneous}}
14template <template <typename> Foo> struct Err3; // expected-error {{expected 'class' before 'Foo'}} \
15// expected-error{{extraneous}}
Douglas Gregoradcac882008-12-01 23:54:00 +000016
17// Template function declarations
18template <typename T> void foo();
19template <typename T, typename U> void foo();
20
Douglas Gregor26236e82008-12-02 00:41:28 +000021// Template function definitions.
22template <typename T> void foo() { }
Douglas Gregoradcac882008-12-01 23:54:00 +000023
24// Template class (forward) declarations
25template <typename T> struct A;
26template <typename T, typename U> struct b;
27template <typename> struct C;
28template <typename, typename> struct D;
29
30// Forward declarations with default parameters?
Douglas Gregor4310f4e2009-02-16 22:38:20 +000031template <typename T = int> class X1;
32template <typename = int> class X2;
Douglas Gregoradcac882008-12-01 23:54:00 +000033
34// Forward declarations w/template template parameters
35template <template <typename> class T> class TTP1;
36template <template <typename> class> class TTP2;
Douglas Gregore53060f2009-06-25 22:08:12 +000037template <template <typename> class T = foo> class TTP3; // expected-error{{must be a class template}}
38template <template <typename> class = foo> class TTP3; // expected-error{{must be a class template}}
Douglas Gregoraaba5e32009-02-04 19:02:06 +000039template <template <typename X, typename Y> class T> class TTP5;
Douglas Gregoradcac882008-12-01 23:54:00 +000040
Douglas Gregor52591bf2009-06-24 00:54:41 +000041// Forward declarations with non-type params
Douglas Gregoradcac882008-12-01 23:54:00 +000042template <int> class NTP0;
43template <int N> class NTP1;
44template <int N = 5> class NTP2;
45template <int = 10> class NTP3;
Douglas Gregor4310f4e2009-02-16 22:38:20 +000046template <unsigned int N = 12u> class NTP4;
47template <unsigned int = 12u> class NTP5;
48template <unsigned = 15u> class NTP6;
49template <typename T, T Obj> class NTP7;
Douglas Gregoradcac882008-12-01 23:54:00 +000050
51// Template class declarations
52template <typename T> struct A { };
53template <typename T, typename U> struct B { };
54
Douglas Gregor72c3f312008-12-05 18:15:24 +000055// Template parameter shadowing
56template<typename T, // expected-note{{template parameter is declared here}}
Mike Stump1eb44332009-09-09 15:08:12 +000057 typename T> // expected-error{{declaration of 'T' shadows template parameter}}
Douglas Gregor72c3f312008-12-05 18:15:24 +000058 void shadow1();
59
60template<typename T> // expected-note{{template parameter is declared here}}
61void shadow2(int T); // expected-error{{declaration of 'T' shadows template parameter}}
62
63template<typename T> // expected-note{{template parameter is declared here}}
64class T { // expected-error{{declaration of 'T' shadows template parameter}}
65};
66
67template<int Size> // expected-note{{template parameter is declared here}}
68void shadow3(int Size); // expected-error{{declaration of 'Size' shadows template parameter}}
69
Douglas Gregorc19ee3e2009-06-17 23:37:01 +000070// <rdar://problem/6952203>
71template<typename T> // expected-note{{here}}
72struct shadow4 {
73 int T; // expected-error{{shadows}}
74};
75
76template<typename T> // expected-note{{here}}
77struct shadow5 {
78 int T(int, float); // expected-error{{shadows}}
79};
80
Douglas Gregor72c3f312008-12-05 18:15:24 +000081// Non-type template parameters in scope
82template<int Size>
83void f(int& i) {
84 i = Size;
85 Size = i; // expected-error{{expression is not assignable}}
86}
87
88template<typename T>
89const T& min(const T&, const T&);
Argyrios Kyrtzidis64096252009-05-22 10:22:18 +000090
91void f2() {
92 int x;
93 A< typeof(x>1) > a;
94}
Douglas Gregor2cc782f2009-10-30 21:46:58 +000095
96
97// PR3844
98template <> struct S<int> { }; // expected-error{{explicit specialization of non-template struct 'S'}}
Douglas Gregor1df0ee92010-02-05 07:07:10 +000099
100namespace PR6184 {
101 namespace N {
102 template <typename T>
103 void bar(typename T::x);
104 }
105
106 template <typename T>
107 void N::bar(typename T::x) { }
108}