tw11848.pp 301 B

1234567891011121314151617181920212223
  1. { %OPT=-Sew -Oodfa }
  2. { %NORUN }
  3. {$mode objfpc}{$H+}
  4. uses
  5. Classes, SysUtils;
  6. function Test(a: integer): integer;
  7. var
  8. HashItem: Pointer;
  9. begin
  10. HashItem:=nil;
  11. while HashItem<>nil do begin
  12. if (HashItem<>nil) then
  13. exit(-1);
  14. HashItem:=HashItem;
  15. end;
  16. Result:=0;
  17. end;
  18. begin
  19. end.