summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-pass-by-value/header-with-fix.h
blob: 62609e25f682a4ff6167449e01250c65f4944870 (plain)
1
2
3
4
5
6
7
8
struct S {
  S(S&&);
  S(const S&);
};
struct Foo {
  Foo(const S &s);
  S s;
};
OpenPOWER on IntegriCloud