class X
{
};

f(x)
{
	return 3
}

public main()
{
	new X:x;
	return f(x);
}