Sign in
llvm
/
llvm-project
/
41a94de75caacb979070ec7a010dfe3c4e9f116f
/
.
/
lldb
/
test
/
API
/
commands
/
target
/
anon-struct
/
main.cpp
blob: fbe26ea0ab87526e724aa4e128ab228c8303f744 [
file
] [
log
] [
blame
]
struct
A
{
struct
{
int
x
=
1
;
};
}
a
;
struct
B
{
// Anonymous struct inherits another struct.
struct
:
public
A
{
int
z
=
3
;
};
}
b
;
int
main
(
int
argc
,
char
**
argv
)
{
return
0
;
}