Home
last modified time | relevance | path

Searched refs:callFoo (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/test/std/experimental/utilities/meta/meta.detect/
Dis_detected_convertible.pass.cpp21 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()
Dis_detected_exact.pass.cpp21 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()
Ddetected_t.pass.cpp21 using callFoo = decltype(std::declval<T&>().Foo()); typedef
41 static_assert( std::is_same<Res, typename ex::detected_t<callFoo, T>>::value, "" ); in test()