xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/gdb701.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 struct _foo
2 {
3   int x;
4   int y;
5   int z;
6 };
7 
8 typedef struct _foo Foo;
9 
10 int
main(int argc,char * argv[])11 main (int argc, char *argv[])
12 {
13   Foo *foo = 0;
14   return 0;
15 }
16