Sign in
llvm
/
llvm-project
/
clang
/
96ed5aba818127cde6f6c85106453fca56e8fdc4
/
.
/
test
/
ASTMerge
/
cxx-rewritten-binary-operator
/
Inputs
/
rbo.cpp
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
;
}