summaryrefslogtreecommitdiff
path: root/test/std/thread/futures/futures.future_error/code.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/thread/futures/futures.future_error/code.pass.cpp')
-rw-r--r--test/std/thread/futures/futures.future_error/code.pass.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/std/thread/futures/futures.future_error/code.pass.cpp b/test/std/thread/futures/futures.future_error/code.pass.cpp
index e02af486fc39..35d44df5bbbf 100644
--- a/test/std/thread/futures/futures.future_error/code.pass.cpp
+++ b/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
}