mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
21 lines
268 B
ObjectPascal
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.
|