blob: 74d071ec7de43dcf4f5bcb5fc93600f4a2551e2a [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// <tuple>
// template <class... Types>
// template <class Alloc, class U1, class U2>
// constexpr explicit(see below)
// tuple<Types...>::tuple(allocator_arg_t, const Alloc& a, const pair<U1,
// U2>&& u);
// Constraints:
// - sizeof...(Types) is 2 and
// - is_constructible_v<T0, decltype(get<0>(FWD(u)))> is true and
// - is_constructible_v<T1, decltype(get<1>(FWD(u)))> is true.
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
#include <cassert>
#include <tuple>
#include <utility>
#include "copy_move_types.h"
#include "test_allocator.h"
// test constraints
// sizeof...(Types) == 2
static_assert(std::is_constructible_v<std::tuple<ConstMove, int>, std::allocator_arg_t, test_allocator<int>,
const std::pair<ConstMove, int>&&>);
static_assert(!std::is_constructible_v< std::tuple<ConstMove>, std::allocator_arg_t, test_allocator<int>,
const std::pair<ConstMove, int>&&>);
static_assert(!std::is_constructible_v< std::tuple<ConstMove, int, int>, std::allocator_arg_t, test_allocator<int>,
const std::pair<ConstMove, int>&&>);
// test constraints
// is_constructible_v<T0, decltype(get<0>(FWD(u)))> is true and
// is_constructible_v<T1, decltype(get<1>(FWD(u)))> is true.
static_assert(std::is_constructible_v<std::tuple<int, int>, std::allocator_arg_t, test_allocator<int>,
const std::pair<int, int>&&>);
static_assert(!std::is_constructible_v< std::tuple<NoConstructorFromInt, int>, std::allocator_arg_t,
test_allocator<int>, const std::pair<int, int>&&>);
static_assert(!std::is_constructible_v< std::tuple<int, NoConstructorFromInt>, std::allocator_arg_t,
test_allocator<int>, const std::pair<int, int>&&>);
static_assert(!std::is_constructible_v< std::tuple<NoConstructorFromInt, NoConstructorFromInt>, std::allocator_arg_t,
test_allocator<int>, const std::pair<int, int>&&>);
// test: The expression inside explicit is equivalent to:
// !is_convertible_v<decltype(get<0>(FWD(u))), T0> ||
// !is_convertible_v<decltype(get<1>(FWD(u))), T1>
static_assert(
ImplicitlyConstructible< std::tuple<ConvertibleFrom<ConstMove>, ConvertibleFrom<ConstMove>>, std::allocator_arg_t,
test_allocator<int>, const std::pair<ConstMove, ConstMove>&&>);
static_assert(
!ImplicitlyConstructible<std::tuple<ConvertibleFrom<ConstMove>, ExplicitConstructibleFrom<ConstMove>>,
std::allocator_arg_t, test_allocator<int>, const std::pair<ConstMove, ConstMove>&&>);
static_assert(
!ImplicitlyConstructible<std::tuple<ExplicitConstructibleFrom<ConstMove>, ConvertibleFrom<ConstMove>>,
std::allocator_arg_t, test_allocator<int>, const std::pair<ConstMove, ConstMove>&&>);
constexpr bool test() {
// test implicit conversions.
{
const std::pair<ConstMove, int> p{1, 2};
std::tuple<ConvertibleFrom<ConstMove>, ConvertibleFrom<int>> t = {std::allocator_arg, test_allocator<int>{},
std::move(p)};
assert(std::get<0>(t).v.val == 1);
assert(std::get<1>(t).v == 2);
assert(std::get<0>(t).alloc_constructed);
assert(std::get<1>(t).alloc_constructed);
}
// test explicit conversions.
{
const std::pair<ConstMove, int> p{1, 2};
std::tuple<ExplicitConstructibleFrom<ConstMove>, ExplicitConstructibleFrom<int>> t{
std::allocator_arg, test_allocator<int>{}, std::move(p)};
assert(std::get<0>(t).v.val == 1);
assert(std::get<1>(t).v == 2);
assert(std::get<0>(t).alloc_constructed);
assert(std::get<1>(t).alloc_constructed);
}
// non const overload should be called
{
const std::pair<TracedCopyMove, TracedCopyMove> p;
std::tuple<ConvertibleFrom<TracedCopyMove>, TracedCopyMove> t = {std::allocator_arg, test_allocator<int>{},
std::move(p)};
assert(constMoveCtrCalled(std::get<0>(t).v));
assert(constMoveCtrCalled(std::get<1>(t)));
assert(std::get<0>(t).alloc_constructed);
assert(std::get<1>(t).alloc_constructed);
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}