xref: /llvm-project/lldb/test/API/python_api/sbvalue_synthetic/main.cpp (revision 3068d277fd5ad0590a11dcb23af170ab31d7bda0)
1*3068d277SPavel Labath struct Foo {
2*3068d277SPavel Labath   int real_child = 47;
3*3068d277SPavel Labath };
4927926b8SPavel Labath 
5*3068d277SPavel Labath struct HasFoo {
6*3068d277SPavel Labath   Foo f;
7927926b8SPavel Labath };
8927926b8SPavel Labath 
main()9927926b8SPavel Labath int main() {
10*3068d277SPavel Labath   Foo foo;
11*3068d277SPavel Labath   HasFoo has_foo;
12927926b8SPavel Labath   return 0; // break here
13927926b8SPavel Labath }
14