xref
: /
external
/
llvm-project
/
clang
/
test
/
Import
/
struct-layout
/
Inputs
/
Callee.cpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
struct
S
{
2
int
a
;
3
};
4
5
struct
Bar
{
barBar
6
void
bar
(
int
_a
) {
7
S
s
= {
_a
};
8
};
9
};
10