fpc/tests/test/uimplements8.pp
2024-11-01 10:52:35 +01:00

20 lines
237 B
ObjectPascal

{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
unit uimplements8;
interface
uses
classes;
type
to1 = class(TObject,IInterface)
fi : IInterface;
property i : IInterface read fi implements IInterface;
end;
implementation
end.