ref: db74516be9356bc40305d3ad683c95ec443a1866
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 G1 I "x ( #I0 ) G5 P F "foo { \ h X3 'P } G3 I F "main { \ G1 #I0 :I h G1 } */ int x; int x = 0; int x; int main(); void * foo() { return &main; } int main() { x = 0; return x; } int x = 1;