fpc/tests/webtbs/tw17184.pp
florian 97ac6ab928 + test for #17184
git-svn-id: trunk@16470 -
2010-11-28 20:23:45 +00:00

13 lines
214 B
Plaintext

{$MODE OBJFPC} { -*- text -*- }
program Test;
type
generic Test1<T> = class end;
generic Test2<T> = class
type
Test3 = specialize Test1<T>;
end;
Test4 = specialize Test2<Integer>;
begin
end.