blob: bb928ab3fadb4f846be11a9e51b1d7ffd9cfdc78 [file] [log] [blame]
#include "std-compare.h"
struct A {
int a;
constexpr auto operator<=>(const A&) const = default;
};
bool foo(A x, A y) { return x < y; }