ref: 50c78edf22ceb0a91da49921f16d65baef94cdac
dir: /cc1/tests/test038.c/
/* name: TEST038 description: Basic test for tentative definitions output: test038.c:45: error: redeclaration of 'x' G1 I x ( #I0 ) 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; } int x = 1;