+ add test for already fixed #24285

This commit is contained in:
Sven/Sarah Barth 2024-02-18 19:34:51 +01:00
parent 60c94c50ff
commit ae06528db4

23
tests/webtbs/tw24285.pp Normal file
View File

@ -0,0 +1,23 @@
{ %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.