int example(int a)
{
	if(1)
	{
		return a + 1;
	}
	else // empty else statement, can be safely removed
	{
	}
}
