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 144 145
|
// { dg-options "-std=gnu++17" }
// { dg-do compile }
// Copyright (C) 2016-2018 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
#include <type_traits>
#include <testsuite_tr1.h>
#ifndef __cpp_lib_is_swappable
# error "Feature-test macro for is_nothrow_swappable_with missing"
#elif __cpp_lib_is_swappable != 201603
# error "Feature-test macro for is_nothrow_swappable_with has wrong value"
#endif
namespace funny {
struct T0 {};
void swap(T0, T0) noexcept;
struct T1
{
friend void swap(T1, T1) noexcept;
};
struct T2 {};
struct T3 {};
void swap(T2, T3) noexcept;
void swap(T3, T2) noexcept;
struct T4 { operator T0() const noexcept; };
struct F0 {};
void swap(F0, F0) = delete;
struct F1 {};
void swap(F1, F1);
struct F2 {};
void swap(F0, F2) noexcept;
void swap(F2, F0);
struct F3
{
friend void swap(F3, F3) = delete;
};
struct F4
{
friend void swap(F4, F4);
};
struct F5 { operator T0() const; };
struct BoolLike {};
void swap(BoolLike, bool&) noexcept;
void swap(bool&, BoolLike) noexcept;
struct BoolLikeErr {};
void swap(BoolLikeErr, bool&);
void swap(bool&, BoolLikeErr) noexcept;
}
void test01()
{
using std::is_nothrow_swappable_with;
using namespace __gnu_test;
// Positive tests.
static_assert(test_property<is_nothrow_swappable_with, int&, int&>(true),
"");
static_assert(test_property<is_nothrow_swappable_with, funny::T0,
funny::T0>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T0,
const funny::T0>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T1,
funny::T1>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T1,
const funny::T1>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T2,
funny::T3>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T3,
funny::T2>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T0,
funny::T4>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T4,
funny::T0>(true), "");
static_assert(test_property<is_nothrow_swappable_with, funny::BoolLike,
bool&>(true), "");
static_assert(test_property<is_nothrow_swappable_with, const funny::BoolLike,
bool&>(true), "");
// Negative tests.
static_assert(test_property<is_nothrow_swappable_with, const int&,
const int&>(false), "");
static_assert(test_property<is_nothrow_swappable_with, int&,
unsigned&>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F0,
funny::F0>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F0,
const funny::F0>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F1,
funny::F1>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F1,
const funny::F1>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F0,
funny::F2>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F2,
funny::F0>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F3,
funny::F3>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F3,
const funny::F3>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F4,
funny::F4>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F4,
const funny::F4>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::T0,
funny::F5>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::F5,
funny::T0>(false), "");
static_assert(test_property<is_nothrow_swappable_with, funny::BoolLikeErr,
bool&>(false), "");
static_assert(test_property<is_nothrow_swappable_with,
const funny::BoolLikeErr, bool&>(false), "");
}
|