blob: 9286e29351679bd65e550be96829aa6ff2b1d4f6 [file] [log] [blame]
Richard Smith764d2fe2011-12-20 02:08:33 +00001// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
Larisse Voufof73da982014-07-30 00:49:55 +00002// RUN: %clang_cc1 -fsyntax-only -std=c++1y -verify %s -DCXX1Y
3
4#ifndef CXX1Y
Richard Smith764d2fe2011-12-20 02:08:33 +00005
6template<typename T, typename U, U> using alias_ref = T;
7template<typename T, typename U, U> void func_ref() {}
8template<typename T, typename U, U> struct class_ref {};
9
10template<int N>
11struct U {
12 static int a;
13};
14
Larisse Voufob6fab262014-07-29 18:44:19 +000015template<int N> struct S; // expected-note 6{{here}}
Richard Smith764d2fe2011-12-20 02:08:33 +000016
17template<int N>
Larisse Voufob6fab262014-07-29 18:44:19 +000018int U<N>::a = S<N>::kError; // expected-error 6{{undefined}}
Richard Smith764d2fe2011-12-20 02:08:33 +000019
20template<typename T>
21void f() {
Larisse Voufob6fab262014-07-29 18:44:19 +000022 (void)alias_ref<int, int&, U<0>::a>(); // expected-note {{here}}
Richard Smith764d2fe2011-12-20 02:08:33 +000023 (void)func_ref<int, int&, U<1>::a>(); // expected-note {{here}}
24 (void)class_ref<int, int&, U<2>::a>(); // expected-note {{here}}
25};
26
Larisse Voufof73da982014-07-30 00:49:55 +000027
Larisse Voufob6fab262014-07-29 18:44:19 +000028template<int N>
29void fi() {
30 (void)alias_ref<int, int&, U<N>::a>(); // expected-note {{here}}
31 (void)func_ref<int, int&, U<N+1>::a>(); // expected-note {{here}}
32 (void)class_ref<int, int&, U<N+2>::a>(); // expected-note {{here}}
33};
34
Richard Smith764d2fe2011-12-20 02:08:33 +000035int main() {
Larisse Voufob6fab262014-07-29 18:44:19 +000036 f<int>(); // NOTE: Non-dependent name uses are type-checked at template definition time.
37 fi<10>(); // expected-note 3{{here}}
Richard Smith764d2fe2011-12-20 02:08:33 +000038}
39
40namespace N {
41 template<typename T> struct S { static int n; };
42 template<typename T> int S<T>::n = 5;
43 void g(int*);
44 template<typename T> int f() {
45 int k[S<T>::n];
46 g(k);
47 return k[3];
48 }
49 int j = f<int>();
50}
Larisse Voufob6fab262014-07-29 18:44:19 +000051
Larisse Voufof73da982014-07-30 00:49:55 +000052#else
53// expected-no-diagnostics
54
55namespace { template<typename> extern int n; }
56template<typename T> int g() { return n<int>; }
Serge Pavlov7dcc97e2016-04-19 06:19:52 +000057namespace { extern template int n<int>; }
Larisse Voufof73da982014-07-30 00:49:55 +000058
59#endif
60