ref: a71f0ed6bf7bac612633c2c2b745d6bf2b45d314
dir: /cc1/tests/test038.c/
/*
name: TEST038
description: Basic test for tentative definitions
output:
G1 I x
G1 #I0 :I
F2 I E
X3 F2 main
F4 P E
G5 F4 foo
{
\
r X3 'P
}
G3 F2 main
{
\
G1 #I0 :I
r G1
}
*/
int x;
int x = 0;
int x;
int main();
void *
foo()
{
return &main;
}
int
main()
{
x = 0;
return x;
}