[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / libcxx / include / __concepts / common_with.h
blobb575aea5f77fc3d6abdfda4a0814fac202387b71
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___CONCEPTS_COMMON_WITH_H
10 #define _LIBCPP___CONCEPTS_COMMON_WITH_H
12 #include <__concepts/common_reference_with.h>
13 #include <__concepts/same_as.h>
14 #include <__config>
15 #include <type_traits>
17 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
18 #pragma GCC system_header
19 #endif
21 _LIBCPP_BEGIN_NAMESPACE_STD
23 #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)
25 // [concept.common]
27 template<class _Tp, class _Up>
28 concept common_with =
29 same_as<common_type_t<_Tp, _Up>, common_type_t<_Up, _Tp>> &&
30 requires {
31 static_cast<common_type_t<_Tp, _Up>>(declval<_Tp>());
32 static_cast<common_type_t<_Tp, _Up>>(declval<_Up>());
33 } &&
34 common_reference_with<
35 add_lvalue_reference_t<const _Tp>,
36 add_lvalue_reference_t<const _Up>> &&
37 common_reference_with<
38 add_lvalue_reference_t<common_type_t<_Tp, _Up>>,
39 common_reference_t<
40 add_lvalue_reference_t<const _Tp>,
41 add_lvalue_reference_t<const _Up>>>;
43 #endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)
45 _LIBCPP_END_NAMESPACE_STD
47 #endif // _LIBCPP___CONCEPTS_COMMON_WITH_H