fpc/tests/webtbs/tw8525.pp
florian 4fc85cb084 * new test
* fix compilation on i386

git-svn-id: trunk@6861 -
2007-03-14 21:09:05 +00:00

11 lines
122 B
ObjectPascal

{$mode objfpc}{$H+}
var
x, y: integer;
begin
x:=1;
y := Round(x);
if y<>1 then
halt(1);
writeln('ok');
end.