HomeSort by relevance Sort by last modified time
    Searched refs:deduce (Results 1 - 3 of 3) sorted by null

  /external/clang/test/SemaCXX/
attributed-auto-deduction.cpp 4 void deduce() { function
cxx0x-initializer-stdinitializerlist.cpp 102 T deduce(std::initializer_list<T>); // expected-note {{conflicting types for parameter 'T' ('int' vs. 'double')}}
107 static_assert(same_type<decltype(deduce({1, 2, 3})), int>::value, "bad deduction");
108 static_assert(same_type<decltype(deduce({1.0, 2.0, 3.0})), double>::value, "bad deduction");
110 deduce({1, 2.0}); // expected-error {{no matching function}}
122 auto bl = {1, 2.0}; // expected-error {{cannot deduce}}
193 auto x { { 0, 0 } }; // expected-error {{cannot deduce actual type for variable 'x' with type 'auto' from initializer list}}
decl-microsoft-call-conv.cpp 249 decltype(auto) deduce(F f) { function in namespace:test9
258 decltype(signaturehelper(deduce(l))) p;

Completed in 623 milliseconds