Browse Source

* mess cleaned up

florian 2 years ago
parent
commit
28b4189a9a
2 changed files with 0 additions and 13 deletions
  1. 0 0
      tests/webtbs/tw40041.pp
  2. 0 13
      tw40041a.pp

+ 0 - 0
tests/webtbs/tw40041b.pp → tests/webtbs/tw40041.pp


+ 0 - 13
tw40041a.pp

@@ -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.