xref: /llvm-project/lldb/test/API/commands/frame/diagnose/array/main.c (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 struct Foo {
2   int b;
3   int c;
4 };
5 
main()6 int main() {
7   struct Foo *a = 0;
8   return a[10].c;
9 }
10