* fix for Mantis #30530: when the global/static symtable is reached defowner is Nil, so respect that in the loop condition

+ added test

git-svn-id: trunk@34532 -
This commit is contained in:
svenbarth 2016-09-16 15:39:03 +00:00
parent 531829c072
commit ce18b10c81
3 changed files with 20 additions and 1 deletions

1
.gitattributes vendored
View File

@ -15224,6 +15224,7 @@ tests/webtbs/tw30443.pp svneol=native#text/plain
tests/webtbs/tw3045.pp svneol=native#text/plain
tests/webtbs/tw3048.pp svneol=native#text/plain
tests/webtbs/tw30522.pp svneol=native#text/plain
tests/webtbs/tw30530.pp svneol=native#text/pascal
tests/webtbs/tw30534.pp svneol=native#text/pascal
tests/webtbs/tw30537.pp svneol=native#text/pascal
tests/webtbs/tw30570.pp svneol=native#text/plain

View File

@ -2830,7 +2830,7 @@ implementation
exit;
end;
def:=tdef(def.owner.defowner);
until not (def.typ in [recorddef,objectdef]);
until not assigned(def) or not (def.typ in [recorddef,objectdef]);
result:=nil;
end;

18
tests/webtbs/tw30530.pp Normal file
View File

@ -0,0 +1,18 @@
unit tw30530;
{$mode objfpc}{$H+}
interface
uses
{Classes, SysUtils, }Generics.Collections;
type
//generic TMyList<T> = class(specialize TObjectList<T>);
generic TMyList<T: class> = class(specialize TObjectList<T>);
//generic TMyList<T: class> = class(specialize TObjectList<T>) end;
implementation
end.