tb0558.pp 235 B

12345678910111213141516171819
  1. { %cpu=i386}
  2. { %opt=-Cfsse2 }
  3. {$mode objfpc}
  4. type
  5. TChartZPosition = 0..MaxInt;
  6. TDoublePoint = record x, y: double; end;
  7. var
  8. d: double;
  9. z: TChartZPosition;
  10. begin
  11. d:=5.0;
  12. z:=3;
  13. d:=d-z;
  14. if (d<>2.0) then
  15. halt(1);
  16. end.