blob: b85275c435354deb0e9db3b1da7a78a4fec336f9 [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 U1, class U2>
// constexpr explicit(see below) tuple<Types...>::tuple(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"
// test constraints
// sizeof...(Types) == 2
static_assert(std::is_constructible_v<std::tuple<ConstMove, int>, const std::pair<ConstMove, int>&&>);
static_assert(!std::is_constructible_v<std::tuple<ConstMove>, const std::pair<ConstMove, int>&&>);
static_assert(!std::is_constructible_v<std::tuple<ConstMove, int, 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>, const std::pair<int, int>&&>);
static_assert(!std::is_constructible_v<std::tuple<NoConstructorFromInt, int>, const std::pair<int, int>&&>);
static_assert(!std::is_constructible_v<std::tuple<int, NoConstructorFromInt>, const std::pair<int, int>&&>);
static_assert(
!std::is_constructible_v< std::tuple<NoConstructorFromInt, NoConstructorFromInt>, 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(std::is_convertible_v<const std::pair<ConstMove, ConstMove>&&,
std::tuple<ConvertibleFrom<ConstMove>, ConvertibleFrom<ConstMove>>>);
static_assert(!std::is_convertible_v<const std::pair<ConstMove, ConstMove>&&,
std::tuple<ExplicitConstructibleFrom<ConstMove>, ConvertibleFrom<ConstMove>>>);
static_assert(!std::is_convertible_v<const std::pair<ConstMove, ConstMove>&&,
std::tuple<ConvertibleFrom<ConstMove>, ExplicitConstructibleFrom<ConstMove>>>);
constexpr bool test() {
// test implicit conversions.
{
const std::pair<ConstMove, int> p{1, 2};
std::tuple<ConvertibleFrom<ConstMove>, ConvertibleFrom<int>> t = std::move(p);
assert(std::get<0>(t).v.val == 1);
assert(std::get<1>(t).v == 2);
}
// test explicit conversions.
{
const std::pair<ConstMove, int> p{1, 2};
std::tuple<ExplicitConstructibleFrom<ConstMove>, ExplicitConstructibleFrom<int>> t{std::move(p)};
assert(std::get<0>(t).v.val == 1);
assert(std::get<1>(t).v == 2);
}
// non const overload should be called
{
const std::pair<TracedCopyMove, TracedCopyMove> p;
std::tuple<ConvertibleFrom<TracedCopyMove>, TracedCopyMove> t = std::move(p);
assert(constMoveCtrCalled(std::get<0>(t).v));
assert(constMoveCtrCalled(std::get<1>(t)));
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}