codetools: fixed test class helper default property

git-svn-id: trunk@50020 -
This commit is contained in:
mattias 2015-10-09 10:29:15 +00:00
parent beaf4b9def
commit f7d22a8e0c
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ var
res: Integer;
begin
t := TTest.Create;
res{guesstype:integer} := t[3];
res{guesstype:longint} := t[3];
Writeln('value: ', res);
if res <> 3 then
Halt(1);

View File

@ -34,7 +34,7 @@ var
res: Integer;
begin
t := TTest.Create;
res{guesstype:integer} := t[3];
res{guesstype:longint} := t[3];
Writeln('value: ', res);
if res <> 3 then
Halt(1);