aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/20000412-5.c
blob: a2a8208d25331a10d2397ac009ab0c0f97513c8b (plain)
1
2
3
4
5
6
7
8
9
10
int main( void ) {
    struct {
	int node;
	int type;
    } lastglob[1] = { { 0   , 1  } };

    if (lastglob[0].node != 0 || lastglob[0].type != 1)
      abort ();
    exit (0);
}