Balázs Kéri dd639eb15a [clang][ASTImporter] Add import of CXXRewrittenBinaryOperator.
Fix for issue #62770.

Reviewed By: donat.nagy

Differential Revision: https://reviews.llvm.org/D153424
2023-06-23 10:04:01 +02:00

9 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; }