Files
linux-packaging-mono/external/llvm-project/clang-tools-extra/test/clang-tidy/Inputs/modernize-pass-by-value/header-with-fix.h

9 lines
81 B
C
Raw Normal View History

struct S {
S(S&&);
S(const S&);
};
struct Foo {
Foo(const S &s);
S s;
};