//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // UNSUPPORTED: libcpp-has-no-threads // // class promise // future get_future(); #include #include int main() { { std::promise p; std::future f = p.get_future(); p.set_value(105.5); assert(f.get() == 105.5); } { std::promise p; std::future f = p.get_future(); try { f = p.get_future(); assert(false); } catch (const std::future_error& e) { assert(e.code() == make_error_code(std::future_errc::future_already_retrieved)); } } { std::promise p; std::promise p0 = std::move(p); try { std::future f = p.get_future(); assert(false); } catch (const std::future_error& e) { assert(e.code() == make_error_code(std::future_errc::no_state)); } } }