fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. auto f1 = [] { std::cout << "Hi\n"; };
  5.  
  6. void foo(const decltype(f1) &f)
  7. {
  8. f();
  9. }
  10.  
  11. int main() {
  12. foo(f1);
  13. return 0;
  14. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
Hi