//===----------------------------------------------------------------------===// // // 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: c++98, c++03, c++11, c++14 // // template void optional::emplace(Args&&... args); #include #include #include #include #include "test_macros.h" #include "archetypes.hpp" using std::optional; class X { int i_; int j_ = 0; public: X() : i_(0) {} X(int i) : i_(i) {} X(int i, int j) : i_(i), j_(j) {} friend 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() {dtor_called = true;} }; bool Y::dtor_called = false; template void test_one_arg() { using Opt = std::optional; { Opt opt; opt.emplace(); assert(static_cast(opt) == true); assert(*opt == T(0)); } { Opt opt; opt.emplace(1); assert(static_cast(opt) == true); assert(*opt == T(1)); } { Opt opt(2); opt.emplace(); assert(static_cast(opt) == true); assert(*opt == T(0)); } { Opt opt(2); opt.emplace(1); assert(static_cast(opt) == true); assert(*opt == T(1)); } } template void test_multi_arg() { test_one_arg(); using Opt = std::optional; Opt opt; { opt.emplace(101, 41); assert(static_cast(opt) == true); assert(*opt == T(101, 41)); } { Opt opt; opt.emplace({1, 2, 3, 4}); assert(static_cast(opt) == true); assert(*opt == T(4)); // T sets its value to the size of the init list } { Opt opt; opt.emplace({1, 2, 3, 4, 5}, 6); assert(static_cast(opt) == true); assert(*opt == T(5)); // T sets its value to the size of the init list } } template void test_on_test_type() { T::reset(); optional opt; assert(T::alive == 0); { T::reset_constructors(); opt.emplace(); 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()); } { T::reset_constructors(); opt.emplace(); 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()); } { T::reset_constructors(); opt.emplace(101); 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)); } { T::reset_constructors(); opt.emplace(-10, 99); 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)); } { T::reset_constructors(); opt.emplace(-10, 99); 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)); } { T::reset_constructors(); opt.emplace({-10, 99, 42, 1}); 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 } { T::reset_constructors(); opt.emplace({-10, 99, 42, 1}, 42); 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 } } int main() { { test_on_test_type(); test_on_test_type(); } { using T = int; test_one_arg(); test_one_arg(); } { using T = ConstexprTestTypes::TestType; test_multi_arg(); } { using T = ExplicitConstexprTestTypes::TestType; test_multi_arg(); } { using T = TrivialTestTypes::TestType; test_multi_arg(); } { using T = ExplicitTrivialTestTypes::TestType; test_multi_arg(); } { optional opt; opt.emplace(42); assert(*opt == 42); opt.emplace(); assert(*opt == 0); } #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); opt.emplace(1); } catch (int i) { assert(i == 6); assert(static_cast(opt) == false); assert(Y::dtor_called == true); } } #endif }