Clang Project

clang_source_code/test/Import/local-struct-use-origins/Inputs/Callee.cpp
1struct Bar {
2  void bar(int _a, bool _b) {
3    {
4      struct S { int a; };
5      S s = { _a };
6    }
7    {
8      struct S { bool b; };
9      S t = { _b };
10    }
11  };
12};
13