-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathcommon.cpp
32 lines (23 loc) · 1.02 KB
/
common.cpp
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
// Copyright Louis Dionne 2013-2022
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
#include <boost/hana/core/common.hpp>
#include <type_traits>
namespace hana = boost::hana;
template <typename T>
struct ImplicitConvertibleTo {
constexpr operator T() const { return {}; }
};
struct T { };
struct invalid;
static_assert(std::is_same<hana::common_t<T, T>, T>{}, "");
static_assert(std::is_same<hana::common_t<invalid, invalid>, invalid>{}, "");
static_assert(std::is_same<hana::common_t<void, void>, void>{}, "");
static_assert(std::is_same<hana::common_t<ImplicitConvertibleTo<T>, T>, T>{}, "");
static_assert(std::is_same<hana::common_t<T, ImplicitConvertibleTo<T>>, T>{}, "");
static_assert(hana::has_common<T, T>{}, "");
static_assert(!hana::has_common<void, T>{}, "");
static_assert(!hana::has_common<T, void>{}, "");
static_assert(!hana::has_common<invalid, T>{}, "");
static_assert(!hana::has_common<T, invalid>{}, "");
int main() { }