Honestly guys, what kind of sorcery is this...

Code:
void f1()
{
	return 0; // compiles fine
}

int f2()
{
	return; // compiles fine
}



And this

Code:
void f()
{
	printf("A");
}

void f() // Ok
{
	printf("B");
}

void run()
{
	if(is(FIRSTRUN))
	{
		f(); // prints "B"
	}
}


Last edited by pascalx; 09/03/17 22:21.