+ add test for already fixed Mantis #24283

git-svn-id: trunk@44249 -
This commit is contained in:
svenbarth 2020-02-28 16:29:14 +00:00
parent 9d7d146ddc
commit 8003f675c5
2 changed files with 23 additions and 0 deletions

1
.gitattributes vendored
View File

@ -17326,6 +17326,7 @@ tests/webtbs/tw24197.pp svneol=native#text/plain
tests/webtbs/tw2421.pp svneol=native#text/plain
tests/webtbs/tw2423.pp svneol=native#text/plain
tests/webtbs/tw2425.pp svneol=native#text/plain
tests/webtbs/tw24283.pp svneol=native#text/pascal
tests/webtbs/tw24318.pp svneol=native#text/plain
tests/webtbs/tw2432.pp svneol=native#text/plain
tests/webtbs/tw2435.pp svneol=native#text/plain

22
tests/webtbs/tw24283.pp Normal file
View File

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