blob: f0c7389bc0832fbb9050c3dd75966d074c86d223 [file] [log] [blame]
#include <stdio.h>
struct outer {
struct inner {
int i;
} mytestvar;
void foo (struct inner *in);
int c ;
};
void foo (struct inner *in)
{
puts ("");
}
int main ()
{
struct outer a;
a.c = 10; /* good place to put a breakpoint */
}