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