bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/frame-var-depth-and-elem-count/main.cpp
2025-02-14 19:21:04 +01:00

19 lines
160 B
C++

#include <cstdio>
struct A {
int i = 42;
};
struct B {
A a;
};
struct C {
B b;
};
int main() {
C *c = new C[5];
puts("break here");
return 0;
}