diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2016-11-14 18:56:24 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2016-11-14 18:56:24 +0000 |
commit | 87f2f1687ef380a96226a10fb189ab65f80ca63f (patch) | |
tree | cd58af75c6ae973251d0d29d44e49a2fc4089a2e /libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp | |
parent | a9548937d621d992235dc0a103e06746e7feaccd (diff) | |
download | bcm5719-llvm-87f2f1687ef380a96226a10fb189ab65f80ca63f.tar.gz bcm5719-llvm-87f2f1687ef380a96226a10fb189ab65f80ca63f.zip |
Implement P0510 'Make future_error Constructible' adopted in Issaquah
llvm-svn: 286864
Diffstat (limited to 'libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp')
-rw-r--r-- | libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp b/libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp index e02af486fc3..35d44df5bbb 100644 --- a/libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp +++ b/libcxx/test/std/thread/futures/futures.future_error/code.pass.cpp @@ -12,12 +12,16 @@ // <future> // class future_error +// future_error(error_code __ec); // exposition only +// explicit future_error(future_errc _Ev) : __ec_(make_error_code(_Ev)) {} // C++17 // const error_code& code() const throw(); #include <future> #include <cassert> +#include "test_macros.h" + int main() { { @@ -40,4 +44,14 @@ int main() std::future_error f(ec); assert(f.code() == ec); } +#if TEST_STD_VER > 14 + { + std::future_error f(std::future_errc::broken_promise); + assert(f.code() == std::make_error_code(std::future_errc::broken_promise)); + } + { + std::future_error f(std::future_errc::no_state); + assert(f.code() == std::make_error_code(std::future_errc::no_state)); + } +#endif } |