fork download
  1. #include <iostream>
  2.  
  3. #define CALL_FUNC(f) f();
  4.  
  5. int main()
  6. {
  7. CALL_FUNC([](){
  8. std::cout << "I'm on line " << __LINE__ << std::endl;
  9. });
  10. return 0;
  11. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
I'm on line 9