llvm/clang/test/ASTMerge/cxx-rewritten-binary-operator/Inputs/rbo.cpp

#include "std-compare.h"

struct A {
  int a;
  constexpr auto operator<=>(const A&) const = default;
};

bool foo(A x, A y) { return x < y; }