shithub: scc

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