1#include <cstdio>
2
3struct A {
4 int i = 42;
5};
6
7struct B {
8 A a;
9};
10
11struct C {
12 B b;
13};
14
15int main() {
16 C *c = new C[5];
17 puts(s: "break here");
18 return 0;
19}
20

source code of lldb/test/API/lang/cpp/frame-var-depth-and-elem-count/main.cpp