ref: 4e16556fa4948d8dd822f7ed31d4e367514f7182
dir: /cc1/tests/test038.c/
/*
name: TEST038
description: Basic test for tentative definitions
output:
*/
int x;
int x = 0;
int x;
int main();
void *
foo()
{
return &main;
}
int
main()
{
x = 0;
return x;
}