* mess cleaned up

This commit is contained in:
florian 2022-12-23 18:16:52 +01:00
parent 693491048b
commit 28b4189a9a
2 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
{$mode objfpc}
function Shift(x: single): single; noinline;
begin
result := x + 10.0 - 1.0;
end;
begin
if Shift(5.0) <> 14.0 then
begin
writeln('Got ', Shift(5.0):0:1, ', expected 14.0.');
halt(1);
end;
end.