mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-20 13:11:40 +02:00
+ test for publishing classref properties
This commit is contained in:
parent
8d69beb6ef
commit
dacdc8c38f
17
tests/test/tclrprop.pp
Normal file
17
tests/test/tclrprop.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user