no message

This commit is contained in:
florian 2004-12-05 22:28:59 +00:00
parent 02979451d1
commit 164acd59d2

22
tests/webtbf/tw3183.pp Normal file
View File

@ -0,0 +1,22 @@
{$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.