bolt/deps/llvm-18.1.8/clang/test/ASTMerge/cxx-rewritten-binary-operator/Inputs/rbo.cpp
2025-02-14 19:21:04 +01:00

8 lines
143 B
C++

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