Sign in
android
/
platform
/
external
/
libabigail
/
refs/heads/aml_cbr_341810000
/
.
/
tests
/
data
/
test-annotate
/
test-anonymous-members-0.cc
blob: 833f9c8e271ac60612bbceacd81ca8bfc3991086 [
file
] [
edit
]
struct
S
{
struct
{
int
m
;
};
struct
{
char
bar
;
};
struct
{
char
baz
;
};
enum
{
one
,
two
}
e1
;
enum
{
three
,
four
}
e2
;
enum
{
five
,
six
}
e3
;
union
{
int
a
;
char
b
;};
union
{
unsigned
c
;
double
d
;};
};
void
foo
(
S
&)
{
}