//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class packaged_task // packaged_task& operator=(packaged_task&) = delete; #include #include class A { long data_; public: explicit A(long i) : data_(i) {} long operator()(long i, long j) const {return data_ + i + j;} }; int main() { { std::packaged_task p0(A(5)); std::packaged_task p; p = p0; assert(!p0.valid()); assert(p.valid()); std::future f = p.get_future(); p(3, 'a'); assert(f.get() == 105.0); } { std::packaged_task p0; std::packaged_task p; p = p0; assert(!p0.valid()); assert(!p.valid()); } }