ref: 3fe369d20c2ac3e00272ce3e9fded43f3d9a5afc
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; }