fpc/tests/webtbs/tw3005.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

17 lines
426 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3005 }
{ Submitted by "Michalis Kamburelis" on 2004-03-04 }
{ e-mail: michalis@camelot.homedns.org }
uses Math;
begin
{ This already works (result is integer) }
Writeln((-2) ** 2);
{ Two things below do not work currently }
Writeln(Power(-2.0, 2.0));
if Power(-2.0, 2.0)<>4 then
halt(1);
Writeln((-2.0) ** 2.0);
if (-2.0) ** 2.0<>4 then
halt(1);
writeln('ok');
end.