Sign in
llvm
/
llvm-project
/
d664c9066840ab57314f0de99fb4e5902b51f8cb
/
.
/
lldb
/
test
/
API
/
python_api
/
sbvalue_synthetic
/
main.cpp
blob: 52c6474d7a1b28de6a52d640b2c4b2317c56d2c3 [
file
] [
log
] [
blame
]
struct
Foo
{
int
real_child
=
47
;
};
struct
HasFoo
{
Foo
f
;
};
int
main
()
{
Foo
foo
;
HasFoo
has_foo
;
return
0
;
// break here
}