fork download
  1. typedef void(*F)();
  2. typedef F (*F1)();
  3. typedef F1 (*F2)();
  4. int main(){
  5. F2 foo;
  6. foo ()()();
  7. }
Runtime error #stdin #stdout 0s 2892KB
stdin
Standard input is empty
stdout
Standard output is empty