fpc/tests/webtbs/tw4013.pp
florian 9da46ff50a * more descriptive error message in case of a missing variant unit added
* variant unit uses now the math unit for ** implementation

git-svn-id: trunk@158 -
2005-05-30 20:47:34 +00:00

14 lines
212 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 4013 }
{ Submitted by "Miguel Garcia-Blanco" on 2005-05-25 }
{ e-mail: mgbonline@hotmail.com }
PROGRAM Test;
uses
variants;
BEGIN
writeln( 2.0**5.0 );
END.