Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
ad42f06f998c45faed641180d852e46177e695cf
/
.
/
test
/
Index
/
cxx-operator-overload-input.cpp
blob: f0503ae68b11d4921d5c927d5841c905589d794f [
file
] [
log
] [
blame
]
class
Cls
{
public
:
Cls
operator
+(
const
Cls
&
RHS
);
};
static
void
bar
()
{
Cls
x1
,
x2
,
x3
;
Cls
x4
=
x1
+
x2
+
x3
;
}
Cls
Cls
::
operator
+(
const
Cls
&
RHS
)
{
}