float foo(float);

void main()
{	float x;
	x = 1.0;
	x = foo(x);
}

float foo(y)
    float y;
{	return y;
}
