+ add test for Mantis #31521 which is already fixed, though I don't know which revision did it...

git-svn-id: trunk@35656 -
This commit is contained in:
svenbarth 2017-03-25 13:41:27 +00:00
parent 0cf5ef459d
commit 34327000d8
2 changed files with 16 additions and 0 deletions

1
.gitattributes vendored
View File

@ -15410,6 +15410,7 @@ tests/webtbs/tw31421a.pp svneol=native#text/plain
tests/webtbs/tw3143.pp svneol=native#text/plain
tests/webtbs/tw31431.pp svneol=native#text/pascal
tests/webtbs/tw3144.pp svneol=native#text/plain
tests/webtbs/tw31521.pp svneol=native#text/pascal
tests/webtbs/tw3157.pp svneol=native#text/plain
tests/webtbs/tw31596.pp svneol=native#text/pascal
tests/webtbs/tw3160a.pp svneol=native#text/plain

15
tests/webtbs/tw31521.pp Normal file
View File

@ -0,0 +1,15 @@
program tw31521;
{$mode delphi}
uses SysUtils;
var
X: Int64;
begin
if X.MaxValue <> High(X) then
Halt(1);
{Writeln(X.MaxValue.ToString);
Writeln(IntToStr(High(X)));
Readln;}
end.