Home | History | Annotate | Download | only in stress1

Lines Matching full:template

30 template <typename T> struct S03 {
33 template <int I, template <typename> class U> struct S03<U<int>[I]>
39 template <typename V = decltype(I)> S03(V);
41 template <> struct S03<S03<int>[42]> : S00 {};
54 template <int I, template <typename> class U> template <typename V> S03<U<int>[I]>::S03(V x) : S00(x) {}
55 template <int I, template <typename> class U> S03<U<int>[I]>::S03() : S00(I) {}
56 template <int I, template <typename> class U> S03<U<int>[I]>::S03(char x) : S00(x) {}
57 template <int I, template <typename> class U> S03<U<int>[I]>::S03(short x) : S00(x) {}
58 template <int I, template <typename> class U> S03<U<int>[I]>::S03(int x) : S00(x) {}