mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
18 lines
173 B
ObjectPascal
18 lines
173 B
ObjectPascal
{$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.
|