xref: /llvm-project/clang/test/Import/local-struct-use-origins/Inputs/Callee.cpp (revision 967d438439ac23afe4f6c684a27ac15daff11872)
1 struct Bar {
barBar2   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