Parcourir la source

+ test for publishing classref properties

Jonas Maebe il y a 20 ans
Parent
commit
dacdc8c38f
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  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.