Home | History | Annotate | Download | only in SemaTemplate

Lines Matching refs:twoT

11 template<class T> void twoT() { } // expected-note 5{{possible target for call}}
12 template<class T> void twoT(int) { } // expected-note 5{{possible target for call}}
34 twoT<int>; // expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
37 sizeof(twoT<int>); //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
43 *twoT<int>; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}}
54 int i = (int) (false ? (void (*)(int))twoT<int> : oneT<int>); //expected-error {{incompatible operand}}
55 (twoT<int>) == oneT<int>; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}} {{cannot resolve overloaded function 'twoT' from context}}
61 b = (void (*)()) twoT<int>;
70 twoT<int> < twoT<int>; //expected-error {{reference to overloaded function could not be resolved; did you mean to call it?}} {{cannot resolve overloaded function 'twoT' from context}}