//Testing some of the invalid casts of chars
int f;

void f() {
	int f;
	double f;
	(char)f;
	(int(*)())f;
}

//Dummy main
int main(int argc, char const *argv[])
{
	return 0;
}
