fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void bar(int a)
  5. {
  6. std::cout << a << std::endl;
  7. }
  8.  
  9. typedef void(*func_type)(int);
  10. template<func_type func>
  11. void foo()
  12. {
  13. func(5);
  14. }
  15.  
  16. int main() {
  17. foo<bar>();
  18. return 0;
  19. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
5