DEBSOURCES
Skip Quicknav
sources / llvm-toolchain-7 / 1%3A7.0.1-8~deb9u3 / clang-tools-extra / test / clang-tidy / Inputs / modernize-pass-by-value / header-with-fix.h
12345678
struct S { S(S&&); S(const S&); }; struct Foo { Foo(const S &s); S s; };