Home | History | Annotate | Download | only in over.over

Lines Matching refs:twoT

32   template<class T> void twoT() { }  // expected-note 2 {{possible target for call}}
33 template<class T> void twoT(T) { } // expected-note 2 {{possible target for call}}
40 twoT<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
49 twoT<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
56 void twoT() { }
58 void twoT(T) { }
86 { static_cast<void>(twoT<int>); }
87 { (void)(twoT<int>); }
95 { ptrdiff_t x = reinterpret_cast<ptrdiff_t>(twoT<int>); }
96 { (void) reinterpret_cast<int (*)(char, double)>(twoT<int>); }
103 { bool b = (twoT<int>); }
104 { bool b = (twoT<int, int>); }
106 { bool b = &twoT<int>; //&foo<int>; }
107 b = &(twoT<int>); }
109 { ptrdiff_t x = (ptrdiff_t) &twoT<int>;
110 x = (ptrdiff_t) &twoT<int>; }
112 { ptrdiff_t x = (ptrdiff_t) twoT<int>;
113 x = (ptrdiff_t) twoT<int>; }
116 { ptrdiff_t x = (ptrdiff_t) &twoT<int,int>;
117 x = (ptrdiff_t) &twoT<int>; }