fpc/tests/webtbs/tw20995a.pp
svenbarth 17a276aabc * compiler\pdecl.pas:
in "array_dec" and "procvar_dec" "parse_generic" needs to be true if the currently
      parsed declaration (array or procvar) is declared inside a generic, because only then
      specializations of other types (it does not matter whether they are inline or in a type
      section of the current generic) are parsed correctly (this fixes Mantis #20577 and
      Mantis #20955 )
+ add tests for the mentioned bug reports (testing only the array case) (tests\webtbs) and
  tests for the procvar case (tests\test)

git-svn-id: trunk@19953 -
2012-01-02 16:02:51 +00:00

21 lines
217 B
ObjectPascal

program tw20995a;
{$mode delphi}{$H+}
type
ITest<T> = interface
end;
TTest<T> = class
type
IGenTest = ITest<T>;
private
FData: array of IGenTest;
end;
TObjTest = TTest<TObject>;
begin
end.