blob: 71944528441e3850a551ffc706b48f3bae289b8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <functional>
#include <iostream>
void greet() {
// BREAK HERE
std::cout << "Hello\n";
}
int main() {
std::function<void()> func{greet};
func();
return 0;
}
|