fpc/tests/webtbs/tw24285.pp
2024-02-18 19:35:24 +01:00

24 lines
202 B
ObjectPascal

{ %NORUN }
program tw24285;
{$mode delphi}{$H+}
type
TA<T> = class
end;
TB<T> = class
public
type
TA = class(TA<T>)
end;
end;
type
TBLongInt = TB<LongInt>;
begin
end.