mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 14:20:05 +02:00
* fixed out-of-bounds int64 constant
git-svn-id: trunk@4490 -
This commit is contained in:
parent
1f42ee201b
commit
ba334905f0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user