fpc/tests/webtbs/tw24283.pp
svenbarth 8003f675c5 + add test for already fixed Mantis #24283
git-svn-id: trunk@44249 -
2020-02-28 16:29:14 +00:00

23 lines
219 B
ObjectPascal

{ %NORUN }
program tw24283;
{$mode delphi}{$H+}
type
TA<T> = record
end;
TB<T> = class
end;
TC<T> = class(TB<TA<T>>)
end;
{ ensure that specialization works as well }
var
t: TC<LongInt>;
begin
end.