+ test for publishing classref properties

This commit is contained in:
Jonas Maebe 2005-04-01 11:54:54 +00:00
parent 8d69beb6ef
commit dacdc8c38f

17
tests/test/tclrprop.pp Normal file
View File

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