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

22 lines
271 B
ObjectPascal

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