shithub: scc

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