xref: /llvm-project/clang/test/Import/struct-layout/Inputs/Callee.cpp (revision 2b3a54bafc38fd096986e401eedd49b88c9cf576)
1 struct S {
2   int a;
3 };
4 
5 struct Bar {
barBar6   void bar(int _a) {
7     S s = { _a };
8   };
9 };
10