//===----------------------------------------------------------------------===// // // 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 future // future& operator=(const future&) = delete; #include #include int main() { #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES { typedef int T; std::promise p; std::future f0 = p.get_future(); std::future f; f = f0; assert(!f0.valid()); assert(f.valid()); } { typedef int T; std::future f0; std::future f; f = f0; assert(!f0.valid()); assert(!f.valid()); } { typedef int& T; std::promise p; std::future f0 = p.get_future(); std::future f; f = f0; assert(!f0.valid()); assert(f.valid()); } { typedef int& T; std::future f0; std::future f; f = f0; assert(!f0.valid()); assert(!f.valid()); } { typedef void T; std::promise p; std::future f0 = p.get_future(); std::future f; f = f0; assert(!f0.valid()); assert(f.valid()); } { typedef void T; std::future f0; std::future f; f = f0; assert(!f0.valid()); assert(!f.valid()); } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES }