test-c99.c
text/plain
Filename: test-c99.c
Type: text/plain
Part: 0
struct foo
{
int a;
int b;
};
struct foo f = {
.a = 1,
.b = 2,
};
int
bar()
{
int x;
x = 1;
int y;
y = 2;
for (int i = 0; i < 5; i++)
;
return 0;
}