fpc/tests/webtbf/tw39485.pp
2022-08-28 21:44:33 +02:00

21 lines
268 B
ObjectPascal

{ %fail }
program Project1;
{$mode objfpc}{$H+}{$Interfaces CORBA}
type
ITest = interface
end;
TBar = class;
TFoo = class(TObject, ITest)
Fa: TBar;
property a: TBar read Fa implements ITest;
end;
TBar = class(TObject, ITest)
end;
begin
end.