ref: d7cd0ce876107c05e34c7c00cef311e2023a9352
dir: /cc1/tests/test038.c/
/*
name: TEST038
description: Basic test for tentative definitions
error:
test038.c:43: error: redeclaration of 'x'
output:
G1 I "x
(
#I0
)
G5 F "foo
{
\
r X3 'P
}
G3 F "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;
}
int x = 1;