llvm-project/lldb/test/API/commands/frame/diagnose/array/main.c

10 lines
89 B
C

struct Foo {
int b;
int c;
};
int main() {
struct Foo *a = 0;
return a[10].c;
}