1#include <compare>
2
3struct Foo {
4 friend auto operator<=>(Foo const &, Foo const &) { return true; }
5};
6
7int main() { return Foo{} <=> Foo{}; }
8

source code of lldb/test/API/lang/cpp/standards/cpp20/main.cpp