1struct Foo {
2 int real_child = 47;
3};
4
5struct HasFoo {
6 Foo f;
7};
8
9int main() {
10 Foo foo;
11 HasFoo has_foo;
12 return 0; // break here
13}
14

source code of lldb/test/API/python_api/sbvalue_synthetic/main.cpp