Home
last modified time | relevance | path

Searched refs:CheckCommonReferenceWith (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.commonref/
H A Dcommon_reference.compile.pass.cpp20 constexpr bool CheckCommonReferenceWith() noexcept { in CheckCommonReferenceWith() function
53 static_assert(CheckCommonReferenceWith<int, int>());
54 static_assert(CheckCommonReferenceWith<int, long>());
55 static_assert(CheckCommonReferenceWith<int, unsigned char>());
57 static_assert(CheckCommonReferenceWith<int, __int128_t>());
59 static_assert(CheckCommonReferenceWith<int, double>());
62 static_assert(CheckCommonReferenceWith<int[5], int[5]>());
65 static_assert(CheckCommonReferenceWith<int*, void*>());
66 static_assert(CheckCommonReferenceWith<int*, const void*>());
69 static_assert(CheckCommonReferenceWith<const int*, void*>());
[all …]