Clang Project

clang_source_code/test/Import/struct-layout/Inputs/Callee.cpp
1struct S {
2  int a;
3};
4
5struct Bar {
6  void bar(int _a) {
7    S s = { _a };
8  };
9};
10