fpc/tests/webtbf/tw11295b.pp
florian f5ccb70a2f * commited to wrong directory
git-svn-id: trunk@10979 -
2008-05-15 18:40:05 +00:00

25 lines
258 B
ObjectPascal

{ %fail }
program IntfDel;
{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
uses
Classes;
type
IA = interface
end;
IB = interface(IA)
end;
TA = class(TObject, IA, IB)
private
FA: IA;
property A: IA read FA implements IA;
end;
begin
end.