fork download
  1. int a()
  2. {
  3. return 5;
  4. }
  5.  
  6. #include <iostream>
  7. #include <typeinfo>
  8.  
  9. int main()
  10. {
  11. auto b = a;
  12. int (*c)() = a;
  13. std::cout << b() << "\n";
  14. }
  15.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
5