Searched refs:callFoo (Results 1 – 3 of 3) sorted by relevance
/external/libcxx/test/std/experimental/utilities/meta/meta.detect/ |
D | is_detected_convertible.pass.cpp | 21 using callFoo = decltype(std::declval<T&>().Foo()); typedef 41 static_assert( b == ex::is_detected_convertible <int, callFoo, T>::value, "" ); in test() 42 static_assert( b == ex::is_detected_convertible_v<int, callFoo, T>, "" ); in test()
|
D | is_detected_exact.pass.cpp | 21 using callFoo = decltype(std::declval<T&>().Foo()); typedef 40 static_assert( b == ex::is_detected_exact <int, callFoo, T>::value, "" ); in test() 41 static_assert( b == ex::is_detected_exact_v<int, callFoo, T>, "" ); in test()
|
D | detected_t.pass.cpp | 21 using callFoo = decltype(std::declval<T&>().Foo()); typedef 41 static_assert( std::is_same<Res, typename ex::detected_t<callFoo, T>>::value, "" ); in test()
|