brintos

brintos / llvm-project-archived public Read only

0
0
Text · 143 B · bb928ab Raw
9 lines · cpp
1#include "std-compare.h"2 3struct A {4  int a;5  constexpr auto operator<=>(const A&) const = default;6};7 8bool foo(A x, A y) { return x < y; }9