aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/main.c
blob: 95c6515e5f54ef3ca19dae527cd5972b312af011 (plain) (blame)
1
2
3
4
5
6
7
8
9
struct Foo {
  int b;
  int c;
};

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