mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 18:29:35 +01:00
*** empty log message ***
This commit is contained in:
parent
a091c27609
commit
2ccc7d566c
@ -1,4 +1,23 @@
|
||||
{ %RESULT=207 }
|
||||
uses
|
||||
math;
|
||||
var
|
||||
s : string;
|
||||
Begin
|
||||
WriteLn(power(2,63));
|
||||
{$ifdef FPC_HAS_TYPE_EXTENDED}
|
||||
str(intpower(2,63),s);
|
||||
if s<>' 9.2233720368547758E+0018' then
|
||||
begin
|
||||
WriteLn(intpower(2,63));
|
||||
halt(1);
|
||||
end;
|
||||
{$endif FPC_HAS_TYPE_EXTENDED}
|
||||
|
||||
{$ifdef FPC_HAS_TYPE_DOUBLE}
|
||||
str(double(intpower(2,63)),s);
|
||||
if s<>' 9.223372036854776E+018' then
|
||||
begin
|
||||
WriteLn(double(intpower(2,63)));
|
||||
halt(1);
|
||||
end;
|
||||
{$endif FPC_HAS_TYPE_DOUBLE}
|
||||
end.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user