fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. using FreeFunPtr = void(*)(void*);
  5.  
  6. int main() {
  7. FreeFunPtr myFreeFun1 = std::free;
  8. FreeFunPtr myFreeFun2 = &std::free;
  9. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty