]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_t.pass.cpp
Vendor import of libc++ trunk r300422:
[FreeBSD/FreeBSD.git] / test / std / depr / depr.function.objects / depr.adaptors / depr.member.pointer.adaptors / const_mem_fun1_t.pass.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // <functional>
11 // REQUIRES: c++98 || c++03 || c++11 || c++14
12
13 // const_mem_fun1_t
14
15 #include <functional>
16 #include <type_traits>
17 #include <cassert>
18
19 struct A
20 {
21     char a1() {return 5;}
22     short a2(int i) {return short(i+1);}
23     int a3() const {return 1;}
24     double a4(unsigned i) const {return i-1;}
25 };
26
27 int main()
28 {
29     typedef std::const_mem_fun1_t<double, A, unsigned> F;
30     static_assert((std::is_base_of<std::binary_function<const A*, unsigned, double>, F>::value), "");
31     const F f(&A::a4);
32     const A a = A();
33     assert(f(&a, 6) == 5);
34 }