brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · 7194452 Raw
14 lines · cpp
1#include <functional>2#include <iostream>3 4void greet() {5  // BREAK HERE6  std::cout << "Hello\n";7}8 9int main() {10  std::function<void()> func{greet};11  func();12  return 0;13}14