Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
llvm-project
/
clang-tools-extra
/
test
/
clang-tidy
/
Inputs
/
modernize-pass-by-value
/
header-with-fix.h
blob: 62609e25f682a4ff6167449e01250c65f4944870 [
file
] [
log
] [
blame
]
struct
S
{
S
(
S
&&);
S
(
const
S
&);
};
struct
Foo
{
Foo
(
const
S
&
s
);
S s
;
};