summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/readability-redundant-member-init.cpp
blob: d8ebe08ec476a7b2e5ae868a1117b247e0f4aede (plain)
1
2
3
4
5
6
7
8
9
10
11
struct S {
  S() = default;
  S(int i) : i(i) {}
  int i = 1;
};

struct F1 {
  F1() : f() {}
  S f;
};