Lines Matching full:note
2 template<typename T> struct A; // expected-note 4{{template is declared here}}
7 template<typename T> struct C : B<T> { } ; // expected-note{{instantiation of template class}}
9 template<typename T> struct D : C<T> { }; // expected-note{{instantiation of template class}}
11 template<typename T> struct E : D<T> { }; // expected-note{{instantiation of template class}}
13 template<typename T> struct F : E<T(T)> { }; // expected-note{{instantiation of template class}}
16 (void)sizeof(F<int>); // expected-note{{instantiation of template class}}
22 (void)sizeof(B<X>); // expected-note{{in instantiation of template class 'B<X>' requested here}}
31 (void)sizeof(G<int>); // expected-note{{in instantiation of template class 'G<int>' requested here}}
36 T t; // expected-note {{reference member 't' will never be initialized}}
41 // expected-note {{instantiation of template class 'PR13365::ResultTy<int &>'}} \
42 // expected-note {{substituting deduced template arguments into function template 'Deduce' [with T1 = PR13365::Cls, T2 = int &]}} \
43 // expected-note {{substitution failure [with T1 = PR13365::Cls, T2 = int &]}}