summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/cppcoreguidelines-pro-type-member-init.cpp
blob: be331829f3194af3cbc9a95ffd3e0b7a4a220fe8 (plain)
1
2
3
4
5
6
7
struct Foo final {
  int x;
};

void foo() {
  Foo y;
}