11 lines
106 B
ObjectPascal
11 lines
106 B
ObjectPascal
|
|
type TClass = class
|
||
|
|
constructor Create;
|
||
|
|
begin
|
||
|
|
|
||
|
|
end;
|
||
|
|
property A : TClass read Create;
|
||
|
|
end;
|
||
|
|
|
||
|
|
begin
|
||
|
|
|
||
|
|
end.
|