florian 21 سال پیش
والد
کامیت
164acd59d2
1فایلهای تغییر یافته به همراه22 افزوده شده و 0 حذف شده
  1. 22 0
      tests/webtbf/tw3183.pp

+ 22 - 0
tests/webtbf/tw3183.pp

@@ -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.
+