Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 2 | |
| 3 | // Errors |
| 4 | export class foo { }; // expected-error {{expected template}} |
Douglas Gregor | d5a423b | 2009-09-25 18:43:00 +0000 | [diff] [blame] | 5 | template x; // expected-error {{C++ requires a type specifier for all declarations}} \ |
| 6 | // expected-error {{does not refer}} |
Douglas Gregor | 7cdbc58 | 2009-07-22 23:48:44 +0000 | [diff] [blame] | 7 | export template x; // expected-error {{expected '<' after 'template'}} |
Douglas Gregor | 51ffb0c | 2009-11-25 18:55:14 +0000 | [diff] [blame] | 8 | export template<class T> class x0; // expected-warning {{exported templates are unsupported}} |
Douglas Gregor | cb821d0 | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 9 | template < ; // expected-error {{parse error}} expected-warning {{declaration does not declare anything}} |
Douglas Gregor | f6b1185 | 2009-10-08 15:14:33 +0000 | [diff] [blame] | 10 | template <template X> struct Err1; // expected-error {{expected '<' after 'template'}} \ |
| 11 | // expected-error{{extraneous}} |
| 12 | template <template <typename> > struct Err2; // expected-error {{expected 'class' before '>'}} \ |
| 13 | // expected-error{{extraneous}} |
| 14 | template <template <typename> Foo> struct Err3; // expected-error {{expected 'class' before 'Foo'}} \ |
| 15 | // expected-error{{extraneous}} |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 16 | |
| 17 | // Template function declarations |
| 18 | template <typename T> void foo(); |
| 19 | template <typename T, typename U> void foo(); |
| 20 | |
Douglas Gregor | 26236e8 | 2008-12-02 00:41:28 +0000 | [diff] [blame] | 21 | // Template function definitions. |
| 22 | template <typename T> void foo() { } |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 23 | |
| 24 | // Template class (forward) declarations |
| 25 | template <typename T> struct A; |
| 26 | template <typename T, typename U> struct b; |
| 27 | template <typename> struct C; |
| 28 | template <typename, typename> struct D; |
| 29 | |
| 30 | // Forward declarations with default parameters? |
Douglas Gregor | 4310f4e | 2009-02-16 22:38:20 +0000 | [diff] [blame] | 31 | template <typename T = int> class X1; |
| 32 | template <typename = int> class X2; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 33 | |
| 34 | // Forward declarations w/template template parameters |
| 35 | template <template <typename> class T> class TTP1; |
| 36 | template <template <typename> class> class TTP2; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 37 | template <template <typename> class T = foo> class TTP3; // expected-error{{must be a class template}} |
| 38 | template <template <typename> class = foo> class TTP3; // expected-error{{must be a class template}} |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 39 | template <template <typename X, typename Y> class T> class TTP5; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 40 | |
Douglas Gregor | 52591bf | 2009-06-24 00:54:41 +0000 | [diff] [blame] | 41 | // Forward declarations with non-type params |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 42 | template <int> class NTP0; |
| 43 | template <int N> class NTP1; |
| 44 | template <int N = 5> class NTP2; |
| 45 | template <int = 10> class NTP3; |
Douglas Gregor | 4310f4e | 2009-02-16 22:38:20 +0000 | [diff] [blame] | 46 | template <unsigned int N = 12u> class NTP4; |
| 47 | template <unsigned int = 12u> class NTP5; |
| 48 | template <unsigned = 15u> class NTP6; |
| 49 | template <typename T, T Obj> class NTP7; |
Douglas Gregor | adcac88 | 2008-12-01 23:54:00 +0000 | [diff] [blame] | 50 | |
| 51 | // Template class declarations |
| 52 | template <typename T> struct A { }; |
| 53 | template <typename T, typename U> struct B { }; |
| 54 | |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 55 | // Template parameter shadowing |
| 56 | template<typename T, // expected-note{{template parameter is declared here}} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 57 | typename T> // expected-error{{declaration of 'T' shadows template parameter}} |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 58 | void shadow1(); |
| 59 | |
| 60 | template<typename T> // expected-note{{template parameter is declared here}} |
| 61 | void shadow2(int T); // expected-error{{declaration of 'T' shadows template parameter}} |
| 62 | |
| 63 | template<typename T> // expected-note{{template parameter is declared here}} |
| 64 | class T { // expected-error{{declaration of 'T' shadows template parameter}} |
| 65 | }; |
| 66 | |
| 67 | template<int Size> // expected-note{{template parameter is declared here}} |
| 68 | void shadow3(int Size); // expected-error{{declaration of 'Size' shadows template parameter}} |
| 69 | |
Douglas Gregor | c19ee3e | 2009-06-17 23:37:01 +0000 | [diff] [blame] | 70 | // <rdar://problem/6952203> |
| 71 | template<typename T> // expected-note{{here}} |
| 72 | struct shadow4 { |
| 73 | int T; // expected-error{{shadows}} |
| 74 | }; |
| 75 | |
| 76 | template<typename T> // expected-note{{here}} |
| 77 | struct shadow5 { |
| 78 | int T(int, float); // expected-error{{shadows}} |
| 79 | }; |
| 80 | |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 81 | // Non-type template parameters in scope |
| 82 | template<int Size> |
| 83 | void f(int& i) { |
| 84 | i = Size; |
| 85 | Size = i; // expected-error{{expression is not assignable}} |
| 86 | } |
| 87 | |
| 88 | template<typename T> |
| 89 | const T& min(const T&, const T&); |
Argyrios Kyrtzidis | 6409625 | 2009-05-22 10:22:18 +0000 | [diff] [blame] | 90 | |
| 91 | void f2() { |
| 92 | int x; |
| 93 | A< typeof(x>1) > a; |
| 94 | } |
Douglas Gregor | 2cc782f | 2009-10-30 21:46:58 +0000 | [diff] [blame] | 95 | |
| 96 | |
| 97 | // PR3844 |
| 98 | template <> struct S<int> { }; // expected-error{{explicit specialization of non-template struct 'S'}} |
Douglas Gregor | 1df0ee9 | 2010-02-05 07:07:10 +0000 | [diff] [blame] | 99 | |
| 100 | namespace 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 | } |