int f(int i) { std::cout << "f:" << i << std::endl; return 123; } auto g = f; std::cout << "g:" << g(-1) << std::endl;