Searched refs:CheckCommonReferenceWith (Results 1 – 1 of 1) sorted by relevance
20 constexpr bool CheckCommonReferenceWith() noexcept { in CheckCommonReferenceWith() function53 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 …]