Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:template

4 // variable template specialization.
5 template<typename T> extern const int extern_redecl;
6 template<typename T> const int extern_redecl = 5;
7 template const int extern_redecl<int>;
11 template<typename T> struct Outer {
12 template<typename U> struct Inner {
13 template<typename V> static int arr[];
18 template<typename T> template<typename U> template<typename V> int Outer<T>::Inner<U>::arr[sizeof(T) + sizeof(U) + sizeof(V)] = { init_arr() };