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