2009-12-16 04:14:24 +08:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-02-07 06:42:48 +08:00
template < typename T > class A ;
extern " C++ " {
template < typename T > class B ;
}
namespace N {
template < typename T > class C ;
}
extern " C " {
template < typename T > class D ; // expected-error{{templates must have C++ linkage}}
}
2014-02-03 00:35:43 +08:00
extern " C " {
class PR17968 {
template < typename T > class D ; // expected-error{{templates must have C++ linkage}}
template < typename T > void f ( ) ; // expected-error{{templates must have C++ linkage}}
} ;
}
2009-05-04 01:18:57 +08:00
template < class U > class A ; // expected-note{{previous template declaration is here}}
2009-02-07 06:42:48 +08:00
template < int N > class A ; // expected-error{{template parameter has a different kind in template redeclaration}}
template < int N > class NonTypeTemplateParm ;
typedef int INT ;
2009-02-20 07:45:49 +08:00
template < INT M > class NonTypeTemplateParm ; // expected-note{{previous non-type template parameter with type 'INT' (aka 'int') is here}}
2009-02-07 06:42:48 +08:00
template < long > class NonTypeTemplateParm ; // expected-error{{template non-type parameter has a different type 'long' in template redeclaration}}
template < template < typename T > class X > class TemplateTemplateParm ;
template < template < class > class Y > class TemplateTemplateParm ; / / expected - note { { previous template declaration is here } } \
// expected-note{{previous template template parameter is here}}
template < typename > class TemplateTemplateParm ; // expected-error{{template parameter has a different kind in template redeclaration}}
template < template < typename T , int > class X > class TemplateTemplateParm ; // expected-error{{too many template parameters in template template parameter redeclaration}}
2009-06-23 07:20:33 +08:00
template < typename T >
struct test { } ; // expected-note{{previous definition}}
template < typename T >
struct test : T { } ; // expected-error{{redefinition}}
2009-02-07 06:42:48 +08:00
class X {
public :
template < typename T > class C ;
} ;
void f ( ) {
2009-11-06 04:02:41 +08:00
template < typename T > class X ; // expected-error{{expression}}
2009-02-07 06:42:48 +08:00
}
2009-11-06 04:54:04 +08:00
2013-08-06 09:03:05 +08:00
template < typename T > class X1 var ; / / expected - warning { { variable templates are a C + + 1 y extension } } \
/ / expected - error { { variable has incomplete type ' class X1 ' } } \
// expected-note {{forward declaration of 'X1'}}
2010-04-13 00:00:01 +08:00
namespace M {
}
template < typename T > class M : : C3 { } ; // expected-error{{out-of-line definition of 'C3' does not match any declaration in namespace 'M'}}
2010-11-09 07:29:42 +08:00
namespace PR8001 {
template < typename T1 >
struct Foo {
template < typename T2 > class Bar ;
typedef Bar < T1 > Baz ;
template < typename T2 >
struct Bar {
Bar ( ) { }
} ;
} ;
void pr8001 ( ) {
Foo < int > : : Baz x ;
Foo < int > : : Bar < int > y ( x ) ;
}
}
2011-10-21 23:47:52 +08:00
2011-11-08 01:43:18 +08:00
namespace rdar9676205 {
template < unsigned , class _Tp > class tuple_element ;
template < class _T1 , class _T2 > class pair ;
template < class _T1 , class _T2 >
class tuple_element < 0 , pair < _T1 , _T2 > >
{
template < class _Tp >
struct X
{
template < class _Up , bool = X < _Up > : : value >
struct Y
: public X < _Up > ,
public Y < _Up >
{ } ;
} ;
} ;
}
2012-04-21 09:27:54 +08:00
namespace redecl {
int A ; // expected-note {{here}}
template < typename T > struct A ; // expected-error {{different kind of symbol}}
2012-04-21 09:51:32 +08:00
int B ; // expected-note {{here}}
2012-04-21 09:27:54 +08:00
template < typename T > struct B { // expected-error {{different kind of symbol}}
} ;
template < typename T > struct F ;
template < typename T > struct K ;
2012-04-21 09:51:32 +08:00
int G , H ; // expected-note {{here}}
2012-04-21 09:27:54 +08:00
struct S {
int C ; // expected-note {{here}}
template < typename T > struct C ; // expected-error {{different kind of symbol}}
2012-04-21 09:51:32 +08:00
int D ; // expected-note {{here}}
2012-04-21 09:27:54 +08:00
template < typename T > struct D { // expected-error {{different kind of symbol}}
} ;
int E ;
template < typename T > friend struct E { // expected-error {{cannot define a type in a friend}}
} ;
int F ;
template < typename T > friend struct F ; // ok, redecl::F
template < typename T > struct G ; // ok
template < typename T > friend struct H ; // expected-error {{different kind of symbol}}
int I , J , K ;
struct U {
template < typename T > struct I ; // ok
template < typename T > struct J { // ok
} ;
template < typename T > friend struct K ; // ok, redecl::K
} ;
} ;
}