#include void f() { std::cout << "f()" << std::endl; } int main() { auto g = f; g(); }