1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9// UNSUPPORTED: c++03, c++11
10// <experimental/type_traits>
11
12#include <experimental/type_traits>
13#include <string>
14
15#include "test_macros.h"
16
17namespace ex = std::experimental;
18
19template <typename T>
20 using callFoo = decltype(std::declval<T&>().Foo());
21
22struct yesFoo {
23 int Foo() { return 0; }
24};
25
26struct noFoo {
27};
28
29struct wrongFoo {
30 std::string Foo() { return ""; }
31};
32
33struct convertibleFoo {
34 long Foo() { return 0; }
35};
36
37
38template <typename T, bool b>
39void test() {
40 static_assert( b == ex::is_detected_convertible <int, callFoo, T>::value, "" );
41 static_assert( b == ex::is_detected_convertible_v<int, callFoo, T>, "" );
42}
43
44int main(int, char**) {
45 test<yesFoo, true>();
46 test<noFoo, false>();
47 test<wrongFoo, false>();
48 test<convertibleFoo, true>();
49
50 return 0;
51}
52

source code of libcxx/test/std/experimental/utilities/meta/meta.detect/is_detected_convertible.pass.cpp