shithub: scc

ref: 0e1ef503f2d2a13bdd07e6d5230d1a67f2a92b47
dir: /cc1/tests/test038.c/

View raw version

/*
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;
}