Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
81fe1fbf4abd00b24e078a80cb15a2d2c1343f11
/
.
/
clang
/
test
/
Import
/
struct-layout
/
Inputs
/
Callee.cpp
blob: 62422af6c2dea367ee126a664eafe1efee91d10b [
file
] [
log
] [
blame
]
struct
S
{
int
a
;
};
struct
Bar
{
void
bar
(
int
_a
)
{
S s
=
{
_a
};
};
};