1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
//===----------------------------------------------------------------------===//
//
// 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
// <utility>
// template <class T1, class T2> struct pair
// template<class U = T1, class V = T2> pair(U&&, V&&);
#include <utility>
#include <cassert>
#include <memory>
#include "archetypes.h"
#include "test_convertible.h"
#include "test_macros.h"
using namespace ImplicitTypes; // Get implicitly archetypes
template <class T1, class T1Arg,
bool CanCopy = true, bool CanConvert = CanCopy>
void test_sfinae() {
using P1 = std::pair<T1, int>;
using P2 = std::pair<int, T1>;
using T2 = int const&;
static_assert(std::is_constructible<P1, T1Arg, T2>::value == CanCopy, "");
static_assert(test_convertible<P1, T1Arg, T2>() == CanConvert, "");
static_assert(std::is_constructible<P2, T2, T1Arg>::value == CanCopy, "");
static_assert(test_convertible<P2, T2, T1Arg>() == CanConvert, "");
}
struct ExplicitT {
constexpr explicit ExplicitT(int x) : value(x) {}
int value;
};
struct ImplicitT {
constexpr ImplicitT(int x) : value(x) {}
int value;
};
int main(int, char**)
{
{
typedef std::pair<std::unique_ptr<int>, short*> P;
P p(std::unique_ptr<int>(new int(3)), nullptr);
assert(*p.first == 3);
assert(p.second == nullptr);
}
{
// Test non-const lvalue and rvalue types
test_sfinae<AllCtors, AllCtors&>();
test_sfinae<AllCtors, AllCtors&&>();
test_sfinae<ExplicitTypes::AllCtors, ExplicitTypes::AllCtors&, true, false>();
test_sfinae<ExplicitTypes::AllCtors, ExplicitTypes::AllCtors&&, true, false>();
test_sfinae<CopyOnly, CopyOnly&>();
test_sfinae<CopyOnly, CopyOnly&&>();
test_sfinae<ExplicitTypes::CopyOnly, ExplicitTypes::CopyOnly&, true, false>();
test_sfinae<ExplicitTypes::CopyOnly, ExplicitTypes::CopyOnly&&, true, false>();
test_sfinae<MoveOnly, MoveOnly&, false>();
test_sfinae<MoveOnly, MoveOnly&&>();
test_sfinae<ExplicitTypes::MoveOnly, ExplicitTypes::MoveOnly&, false>();
test_sfinae<ExplicitTypes::MoveOnly, ExplicitTypes::MoveOnly&&, true, false>();
test_sfinae<NonCopyable, NonCopyable&, false>();
test_sfinae<NonCopyable, NonCopyable&&, false>();
test_sfinae<ExplicitTypes::NonCopyable, ExplicitTypes::NonCopyable&, false>();
test_sfinae<ExplicitTypes::NonCopyable, ExplicitTypes::NonCopyable&&, false>();
}
{
// Test converting types
test_sfinae<ConvertingType, int&>();
test_sfinae<ConvertingType, const int&>();
test_sfinae<ConvertingType, int&&>();
test_sfinae<ConvertingType, const int&&>();
test_sfinae<ExplicitTypes::ConvertingType, int&, true, false>();
test_sfinae<ExplicitTypes::ConvertingType, const int&, true, false>();
test_sfinae<ExplicitTypes::ConvertingType, int&&, true, false>();
test_sfinae<ExplicitTypes::ConvertingType, const int&&, true, false>();
}
#if TEST_STD_VER > 11
{ // explicit constexpr test
constexpr std::pair<ExplicitT, ExplicitT> p(42, 43);
static_assert(p.first.value == 42, "");
static_assert(p.second.value == 43, "");
}
{ // implicit constexpr test
constexpr std::pair<ImplicitT, ImplicitT> p = {42, 43};
static_assert(p.first.value == 42, "");
static_assert(p.second.value == 43, "");
}
#endif
// Test support for http://wg21.link/P1951, default arguments for pair's constructor.
// Basically, this turns copies for brace initialization into moves.
#if TEST_STD_VER > 20
{
struct TrackInit {
TrackInit() = default;
constexpr TrackInit(TrackInit const& other) : wasMoveInit(other.wasMoveInit), wasCopyInit(true) { }
constexpr TrackInit(TrackInit&& other) : wasMoveInit(true), wasCopyInit(other.wasCopyInit) { }
bool wasMoveInit = false;
bool wasCopyInit = false;
};
// Explicit constructor
{
{
std::pair<TrackInit, int> p({}, 3);
assert( p.first.wasMoveInit);
assert(!p.first.wasCopyInit);
}
{
std::pair<int, TrackInit> p(3, {});
assert( p.second.wasMoveInit);
assert(!p.second.wasCopyInit);
}
}
// Implicit constructor
{
{
std::pair<TrackInit, int> p = {{}, 3};
assert( p.first.wasMoveInit);
assert(!p.first.wasCopyInit);
}
{
std::pair<int, TrackInit> p = {3, {}};
assert( p.second.wasMoveInit);
assert(!p.second.wasCopyInit);
}
}
}
#endif // TEST_STD_VER > 20
return 0;
}
|