tb0658.pp 113 B

1234567891011
  1. {$r+,q+}
  2. procedure test(i: int64);
  3. begin
  4. if (i>0) and (i<$1fff) then
  5. halt(1);
  6. end;
  7. begin
  8. test(0);
  9. end.