blob: a2a8208d25331a10d2397ac009ab0c0f97513c8b [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);
}