//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // class promise // void promise::set_exception_at_thread_exit(exception_ptr p); #include #include void func(std::promise& p) { const int i = 5; p.set_exception_at_thread_exit(std::make_exception_ptr(3)); } int main() { { typedef int T; std::promise p; std::future f = p.get_future(); std::thread(func, std::move(p)).detach(); try { f.get(); assert(false); } catch (int i) { assert(i == 3); } } }