tw17379.pp 319 B

12345678910111213141516171819202122
  1. { %norun }
  2. {$mode macpas}
  3. {$warnings off}
  4. program recursivefunctionparam;
  5. function first( function test( theint: integer): boolean): integer;
  6. begin {not implemented} end;
  7. function find: integer;
  8. function test( theint: integer): boolean;
  9. begin
  10. first( test)
  11. end;
  12. begin
  13. {not implemented}
  14. end;
  15. begin
  16. end.