//===----------------------------------------------------------------------===// // // 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 class variant; // ~variant(); #include #include #include #include "test_macros.h" struct NonTDtor { int* count; constexpr NonTDtor(int* a, int*) : count(a) {} TEST_CONSTEXPR_CXX20 ~NonTDtor() { ++*count; } }; static_assert(!std::is_trivially_destructible::value, ""); struct NonTDtor1 { int* count; constexpr NonTDtor1(int*, int* b) : count(b) {} TEST_CONSTEXPR_CXX20 ~NonTDtor1() { ++*count; } }; static_assert(!std::is_trivially_destructible::value, ""); struct TDtor { constexpr TDtor() = default; constexpr TDtor(const TDtor&) {} // non-trivial copy TEST_CONSTEXPR_CXX20 ~TDtor() = default; }; static_assert(!std::is_trivially_copy_constructible::value, ""); static_assert(std::is_trivially_destructible::value, ""); TEST_CONSTEXPR_CXX20 bool test() { { using V = std::variant; static_assert(std::is_trivially_destructible::value, ""); [[maybe_unused]] V v(std::in_place_index<2>); } { using V = std::variant; static_assert(!std::is_trivially_destructible::value, ""); { int count0 = 0; int count1 = 0; { V v(std::in_place_index<0>, &count0, &count1); assert(count0 == 0); assert(count1 == 0); } assert(count0 == 1); assert(count1 == 0); } { int count0 = 0; int count1 = 0; { V v(std::in_place_index<1>); } assert(count0 == 0); assert(count1 == 0); } { int count0 = 0; int count1 = 0; { V v(std::in_place_index<2>, &count0, &count1); assert(count0 == 0); assert(count1 == 0); } assert(count0 == 0); assert(count1 == 1); } } return true; } int main(int, char**) { test(); #if TEST_STD_VER >= 20 static_assert(test()); #endif return 0; }