fpc/tests/webtbf/tw3183.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

24 lines
279 B
ObjectPascal

{ %fail }
{$ifdef fpc}{$mode delphi}{$endif}
type
IA=interface
function copy:String;
end;
IB=interface(IA)
function copy:integer;
end;
to1 = class(tinterfacedobject,ia,ib)
function copy:string;
end;
function to1.copy:string;
begin
end;
begin
end.