test.d

int f(int i)
{
	if (i > -1 && i < 1)
	{
		return 0;
	}
	return i * i;
}

void main()
{
	assert(f(5) == 30);
}