fpc/tests/webtbs/tw38390.pp
2021-01-24 14:57:20 +00:00

24 lines
345 B
ObjectPascal

program tw38390;
{$MODE Delphi}
uses SysUtils;
var
s: String;
x: UInt64;
begin
s := '20000000000';
x := UInt64.Parse(s);
WriteLn(x);
if x <> 20000000000 then
Halt(1);
UInt64.TryParse(s, x);
WriteLn(x);
if x <> 20000000000 then
Halt(2);
x := StrToQWord(s);
WriteLn(x);
if x <> 20000000000 then
Halt(3);
end.