Searched defs:twoT (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dresolve-single-template-id.cpp11 template<class T> void twoT() { } // expected-note 5{{possible target for call}} function
12 template<class T> void twoT(int) { } // expected-note 5{{possible target for call}} function
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?}}
60 int i = (int) (false ? (void (*)(int))twoT<int> : oneT<int>); //expected-error {{incompatible operand}}
61 (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}}
67 b = (void (*)()) twoT<int>;
76 twoT<in
[all...]
/external/clang/test/CXX/over/over.over/
H A Dp2-resolve-single-template-id.cpp32 template<class T> void twoT() { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
33 template<class T> void twoT(T) { } // expected-note 2 {{possible target for call}} function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
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() { } function
58 void twoT(T) { } function
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<in
[all...]

Completed in 158 milliseconds