summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/commands/frame/diagnose/bad-reference/main.cpp
blob: 2f61152e398538e52e5ba9b01a577d73ad35766e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
struct Bar {
  int c;
  int d;
};

struct Foo {
  int a;
  struct Bar &b;
};

struct Foo *GetAFoo() {
  static struct Foo f = { 0, *((Bar*)0) };
  return &f;
}

int GetSum(struct Foo *f) {
  return f->a + f->b.d;
}

int main() {
  return GetSum(GetAFoo());
}