ref: 02362a2f2130ccec1d17f587c55952f8ab3b635e
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; }