xref
: /
llvm-project
/
clang-tools-extra
/
test
/
clang-tidy
/
checkers
/
modernize
/
Inputs
/
pass-by-value
/
header-with-fix.h
(revision 89a1d03e2b379e325daa5249411e414bbd995b5e)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
struct
S
{
2
S
(
S
&&);
3
S
(
const
S
&);
4
};
5
struct
Foo
{
6
Foo
(
const
S
&
s
);
7
S
s
;
8
};
9