fpc/tests/webtbs/tw32539.pp
2018-03-15 20:37:50 +00:00

17 lines
178 B
ObjectPascal

uses
variants;
var
v : variant;
begin
v:=1.5;
v:=sqr(v);
if v<>1.5*1.5 then
halt(1);
v:=-v;
v:=abs(v);
if v<>1.5*1.5 then
halt(1);
writeln('ok');
end.