* fixed out-of-bounds int64 constant

git-svn-id: trunk@4490 -
This commit is contained in:
Jonas Maebe 2006-08-23 17:55:41 +00:00
parent 1f42ee201b
commit ba334905f0

View File

@ -15,7 +15,7 @@ var
r: tr;
begin
r.a := 2;
r.i := 12345678901234567890;
r.i := 1234567890123456789;
r.c := true;
r.d := 5;
r.e := ed;
@ -28,7 +28,7 @@ var
begin
t(r);
if (r.a <> 2) or
(r.i <> 12345678901234567890) or
(r.i <> 1234567890123456789) or
(not r.c) or
(r.d <> 5) or
(r.e <> ed) then