Home | History | Annotate | Download | only in SemaTemplate

Lines Matching defs:int

37 typedef int INT;
38 template struct N::Outer::Inner::InnerTemplate<INT>::VeryInner;
39 template struct N::Outer::Inner::InnerTemplate<INT>::UeberInner; // expected-error{{no struct named 'UeberInner' in 'N::Outer::Inner::InnerTemplate<int>'}}
71 template struct N2::Outer2::Inner<int*, float*>; // expected-note{{instantiation}}
77 int member;
80 operator int safe_bool::*() const {
87 void test_smart_ptr(smart_ptr<int> p) {
93 template <int K> struct X {
106 template void f(int const &); // expected-note {{requested here}}
114 // This counts as an odr-use, so should trigger the instantiation of f<int>.
115 (void)&f<int>; // expected-note {{here}}