Home | History | Annotate | Download | only in SemaTemplate

Lines Matching full:template

3 template<int N> struct S {
6 // expected-error{{recursive template instantiation exceeded maximum depth of 128}} \
9 // expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
12 template<> struct S<0> {
17 template struct S<128>;
18 template struct S<256>;
19 template struct S<384>;
20 template struct S<512>;
21 template struct S<640>;
22 template struct S<768>;
23 template struct S<896>;
24 template struct S<1024>;
25 template struct S<1152>;
26 template struct S<1280>;
27 template struct S<1408>;
28 template struct S<1536>;
29 template struct S<1664>;
30 template struct S<1792>;
31 template struct S<1920>;
32 template struct S<2048>;