1 // RUN: %clang_cc1 -fsyntax-only -verify -triple=x86_64-linux-gnu %s 2 3 // C++11 [temp.arg.nontype]p1: 4 // 5 // A template-argument for a non-type, non-template template-parameter shall 6 // be one of: 7 // -- an integral constant expression; or 8 // -- the name of a non-type template-parameter ; or 9 namespace non_type_tmpl_param { 10 template <int N> struct X0 { X0(); }; 11 template <int N> X0<N>::X0() { } 12 template <int* N> struct X1 { X1(); }; 13 template <int* N> X1<N>::X1() { } 14 template <int& N> struct X3 { X3(); }; 15 template <int& N> X3<N>::X3() { } 16 template <int (*F)(int)> struct X4 { X4(); }; 17 template <int (*F)(int)> X4<F>::X4() { } 18 template <typename T, int (T::* M)(int)> struct X5 { X5(); }; 19 template <typename T, int (T::* M)(int)> X5<T, M>::X5() { } 20 } 21 22 // -- a constant expression that designates the address of an object with 23 // static storage duration and external or internal linkage or a function 24 // with external or internal linkage, including function templates and 25 // function template-ids, but excluting non-static class members, expressed 26 // (ignoring parentheses) as & id-expression, except that the & may be 27 // omitted if the name refers to a function or array and shall be omitted 28 // if the corresopnding template-parameter is a reference; or 29 namespace addr_of_obj_or_func { 30 template <int* p> struct X0 { }; // expected-note 4{{here}} 31 template <int (*fp)(int)> struct X1 { }; 32 template <int &p> struct X2 { }; // expected-note 4{{here}} 33 template <const int &p> struct X2k { }; // expected-note {{here}} 34 template <int (&fp)(int)> struct X3 { }; // expected-note 4{{here}} 35 36 int i = 42; 37 int iarr[10]; 38 int f(int i); 39 const int ki = 9; // expected-note 5{{here}} 40 __thread int ti = 100; // expected-note 2{{here}} 41 static int f_internal(int); // expected-note 4{{here}} 42 template <typename T> T f_tmpl(T t); 43 44 void test() { 45 X0<i> x0a; // expected-error {{must have its address taken}} 46 X0<&i> x0a_addr; 47 X0<iarr> x0b; 48 X0<&iarr> x0b_addr; // expected-error {{cannot be converted to a value of type 'int *'}} 49 X0<ki> x0c; // expected-error {{must have its address taken}} expected-warning {{internal linkage is a C++11 extension}} 50 X0<&ki> x0c_addr; // expected-error {{cannot be converted to a value of type 'int *'}} expected-warning {{internal linkage is a C++11 extension}} 51 X0<&ti> x0d_addr; // expected-error {{refers to thread-local object}} 52 X1<f> x1a; 53 X1<&f> x1a_addr; 54 X1<f_tmpl> x1b; 55 X1<&f_tmpl> x1b_addr; 56 X1<f_tmpl<int> > x1c; 57 X1<&f_tmpl<int> > x1c_addr; 58 X1<f_internal> x1d; // expected-warning {{internal linkage is a C++11 extension}} 59 X1<&f_internal> x1d_addr; // expected-warning {{internal linkage is a C++11 extension}} 60 X2<i> x2a; 61 X2<&i> x2a_addr; // expected-error {{address taken}} 62 X2<iarr> x2b; // expected-error {{cannot bind to template argument of type 'int [10]'}} 63 X2<&iarr> x2b_addr; // expected-error {{address taken}} 64 X2<ki> x2c; // expected-error {{ignores qualifiers}} expected-warning {{internal linkage is a C++11 extension}} 65 X2k<ki> x2kc; // expected-warning {{internal linkage is a C++11 extension}} 66 X2k<&ki> x2kc_addr; // expected-error {{address taken}} expected-warning {{internal linkage is a C++11 extension}} 67 X2<ti> x2d_addr; // expected-error {{refers to thread-local object}} 68 X3<f> x3a; 69 X3<&f> x3a_addr; // expected-error {{address taken}} 70 X3<f_tmpl> x3b; 71 X3<&f_tmpl> x3b_addr; // expected-error {{address taken}} 72 X3<f_tmpl<int> > x3c; 73 X3<&f_tmpl<int> > x3c_addr; // expected-error {{address taken}} 74 X3<f_internal> x3d; // expected-warning {{internal linkage is a C++11 extension}} 75 X3<&f_internal> x3d_addr; // expected-error {{address taken}} expected-warning {{internal linkage is a C++11 extension}} 76 77 int n; // expected-note {{here}} 78 X0<&n> x0_no_linkage; // expected-error {{non-type template argument refers to object 'n' that does not have linkage}} 79 struct Local { static int f() {} }; // expected-note {{here}} 80 X1<&Local::f> x1_no_linkage; // expected-error {{non-type template argument refers to function 'f' that does not have linkage}} 81 } 82 } 83 84 // -- a constant expression that evaluates to a null pointer value (4.10); or 85 // -- a constant expression that evaluates to a null member pointer value 86 // (4.11); or 87 // -- a pointer to member expressed as described in 5.3.1. 88 89 namespace bad_args { 90 template <int* N> struct X0 { }; // expected-note 2{{template parameter is declared here}} 91 int i = 42; 92 X0<&i + 2> x0a; // expected-error{{non-type template argument does not refer to any declaration}} 93 int* iptr = &i; 94 X0<iptr> x0b; // expected-error{{non-type template argument for template parameter of pointer type 'int *' must have its address taken}} 95 } 96