blob: 71944528441e3850a551ffc706b48f3bae289b8a [file] [log] [blame]
#include <functional>
#include <iostream>
void greet() {
// BREAK HERE
std::cout << "Hello\n";
}
int main() {
std::function<void()> func{greet};
func();
return 0;
}