fork download
  1. #include <iostream>
  2. #include <functional>
  3. void SomeFunc(int n1, short n2)
  4. {
  5. std::cout << n1 << ' ' << n2 << '\n';
  6. }
  7. int main()
  8. {
  9. (std::function<void(int,short)>(SomeFunc))(3,2);
  10. }
  11.  
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
3 2