//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14 // // template T& optional::emplace(Args&&... args); #include #include #include #include #include "test_macros.h" #include "archetypes.h" using std::optional; class X { int i_; int j_ = 0; public: constexpr X() : i_(0) {} constexpr X(int i) : i_(i) {} constexpr X(int i, int j) : i_(i), j_(j) {} friend constexpr bool operator==(const X& x, const X& y) {return x.i_ == y.i_ && x.j_ == y.j_;} }; class Y { public: static bool dtor_called; Y() = default; Y(int) { TEST_THROW(6);} Y(const Y&) = default; Y& operator=(const Y&) = default; ~Y() {dtor_called = true;} }; bool Y::dtor_called = false; template constexpr bool test_one_arg() { using Opt = std::optional; { Opt opt; auto & v = opt.emplace(); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert(*opt == T(0)); assert(&v == &*opt); } { Opt opt; auto & v = opt.emplace(1); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert(*opt == T(1)); assert(&v == &*opt); } { Opt opt(2); auto & v = opt.emplace(); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert(*opt == T(0)); assert(&v == &*opt); } { Opt opt(2); auto & v = opt.emplace(1); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert(*opt == T(1)); assert(&v == &*opt); } return true; } template constexpr bool test_multi_arg() { test_one_arg(); using Opt = std::optional; { Opt opt; auto &v = opt.emplace(101, 41); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert( v == T(101, 41)); assert(*opt == T(101, 41)); } { Opt opt; auto &v = opt.emplace({1, 2, 3, 4}); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert( v == T(4)); // T sets its value to the size of the init list assert(*opt == T(4)); } { Opt opt; auto &v = opt.emplace({1, 2, 3, 4, 5}, 6); static_assert( std::is_same_v, "" ); assert(static_cast(opt) == true); assert( v == T(5)); // T sets its value to the size of the init list assert(*opt == T(5)); // T sets its value to the size of the init list } return true; } template void test_on_test_type() { T::reset(); optional opt; assert(T::alive == 0); { T::reset_constructors(); auto &v = opt.emplace(); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::default_constructed == 1); assert(T::destroyed == 0); assert(static_cast(opt) == true); assert(*opt == T()); assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace(); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::default_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T()); assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace(101); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::value_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T(101)); assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace(-10, 99); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::value_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T(-10, 99)); assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace(-10, 99); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::value_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T(-10, 99)); assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace({-10, 99, 42, 1}); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::value_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T(4)); // size of the initializer list assert(&v == &*opt); } { T::reset_constructors(); auto &v = opt.emplace({-10, 99, 42, 1}, 42); static_assert( std::is_same_v, "" ); assert(T::alive == 1); assert(T::constructed == 1); assert(T::value_constructed == 1); assert(T::destroyed == 1); assert(static_cast(opt) == true); assert(*opt == T(4)); // size of the initializer list assert(&v == &*opt); } } TEST_CONSTEXPR_CXX20 bool test_empty_emplace() { optional opt; auto& v = opt.emplace(42); static_assert(std::is_same_v, ""); assert(*opt == 42); assert(v == 42); opt.emplace(); assert(*opt == 0); return true; } int main(int, char**) { { test_on_test_type(); test_on_test_type(); } { using T = int; test_one_arg(); test_one_arg(); #if TEST_STD_VER > 17 static_assert(test_one_arg()); static_assert(test_one_arg()); #endif } { using T = ConstexprTestTypes::TestType; test_multi_arg(); #if TEST_STD_VER > 17 static_assert(test_multi_arg()); #endif } { using T = ExplicitConstexprTestTypes::TestType; test_multi_arg(); #if TEST_STD_VER > 17 static_assert(test_multi_arg()); #endif } { using T = TrivialTestTypes::TestType; test_multi_arg(); #if TEST_STD_VER > 17 static_assert(test_multi_arg()); #endif } { using T = ExplicitTrivialTestTypes::TestType; test_multi_arg(); #if TEST_STD_VER > 17 static_assert(test_multi_arg()); #endif } { test_empty_emplace(); #if TEST_STD_VER > 17 static_assert(test_empty_emplace()); #endif } #ifndef TEST_HAS_NO_EXCEPTIONS Y::dtor_called = false; { Y y; optional opt(y); try { assert(static_cast(opt) == true); assert(Y::dtor_called == false); auto &v = opt.emplace(1); static_assert( std::is_same_v, "" ); assert(false); } catch (int i) { assert(i == 6); assert(static_cast(opt) == false); assert(Y::dtor_called == true); } } #endif return 0; }