Effect on original feature: Valid C++ 2017 code that contains a <= token
immediately followed by a > token
may be ill-formed or have different semantics in this International Standard:
namespace N {
struct X {};
bool operator<=(X, X);
template<bool(X, X)> struct Y {};
Y<operator<=> y; // ill-formed; previously well-formed
}