tcc-65816/test/tests/20000412-5.c
2017-06-09 13:52:12 +02:00

12 lines
182 B
C

int main( void ) {
struct {
int node;
int type;
} lastglob[1] = { { 0 , 1 } };
if (lastglob[0].node != 0 || lastglob[0].type != 1)
abort ();
exit (0);
}