#include <iostream>
using namespace std;

void func();
void foo(void()) {cout << __PRETTY_FUNCTION__;}

int main() {
	foo(func);
}