]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/main.c
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / frame-diagnose / array / main.c
1 struct Foo {
2   int b;
3   int c;
4 };
5
6 int main() {
7   struct Foo *a = 0;
8   return a[10].c;
9 }