xref: /llvm-project/lldb/test/API/lang/cpp/frame-var-depth-and-elem-count/main.cpp (revision f94c7ffe46400559740e7f81d7c60d8c0fe7df82)
1 #include <cstdio>
2 
3 struct A {
4   int i = 42;
5 };
6 
7 struct B {
8   A a;
9 };
10 
11 struct C {
12   B b;
13 };
14 
main()15 int main() {
16   C *c = new C[5];
17   puts("break here");
18   return 0;
19 }
20