int func(int arg) {
	return arg;
}
int main(void) {
	return func(func);
}