소스 검색

+ test for publishing classref properties

Jonas Maebe 20 년 전
부모
커밋
dacdc8c38f
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      tests/test/tclrprop.pp

+ 17 - 0
tests/test/tclrprop.pp

@@ -0,0 +1,17 @@
+{$mode delphi}
+
+type
+  tc = class
+  end;
+
+  tcc = class of tc;
+
+  tc1 = class
+   private
+    fa: tcc;
+   published
+    property pa: tcc read fa write fa;
+  end;
+
+begin
+end.