Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
clang
/
test
/
Import
/
struct-layout
/
Inputs
/
Callee.cpp
Text
·
84 B
·
62422af
Raw
10 lines · cpp
1
struct S {
2
int a;
3
};
4
5
struct Bar {
6
void bar(int _a) {
7
S s = { _a };
8
};
9
};
10