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 
12 // class function<R(ArgTypes...)>
13 
14 // template<class A> function(allocator_arg_t, const A&, function&&);
15 
16 // UNSUPPORTED: asan, msan
17 
18 #include <functional>
19 #include <cassert>
20 
21 #include "test_allocator.h"
22 
23 int new_called = 0;
24 
25 void* operator new(std::size_t s) throw(std::bad_alloc)
26 {
27     ++new_called;
28     return std::malloc(s);
29 }
30 
31 void  operator delete(void* p) throw()
32 {
33     --new_called;
34     std::free(p);
35 }
36 
37 class A
38 {
39     int data_[10];
40 public:
41     static int count;
42 
43     A()
44     {
45         ++count;
46         for (int i = 0; i < 10; ++i)
47             data_[i] = i;
48     }
49 
50     A(const A&) {++count;}
51 
52     ~A() {--count;}
53 
54     int operator()(int i) const
55     {
56         for (int j = 0; j < 10; ++j)
57             i += data_[j];
58         return i;
59     }
60 };
61 
62 int A::count = 0;
63 
64 int main()
65 {
66 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
67     assert(new_called == 0);
68     {
69     std::function<int(int)> f = A();
70     assert(A::count == 1);
71     assert(new_called == 1);
72     assert(f.target<A>());
73     assert(f.target<int(*)(int)>() == 0);
74     std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), std::move(f));
75     assert(A::count == 1);
76     assert(new_called == 1);
77     assert(f2.target<A>());
78     assert(f2.target<int(*)(int)>() == 0);
79     assert(f.target<A>() == 0);
80     assert(f.target<int(*)(int)>() == 0);
81     }
82 #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
83 }
84