#include <compare>
#include <version>
std::strong_ordering Test(int a, int b) {
return a <=> b;
}
#if defined(__cpp_impl_three_way_comparison) && \
!defined(__cpp_lib_three_way_comparison)
#error The library supports three-way comparison but claims it does not
#endif