소스 검색

+ add test for already fixed #24285

Sven/Sarah Barth 1 년 전
부모
커밋
ae06528db4
1개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. 23 0
      tests/webtbs/tw24285.pp

+ 23 - 0
tests/webtbs/tw24285.pp

@@ -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.