浏览代码

no message

florian 22 年之前
父节点
当前提交
15eef9c65a
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34 0
      tests/tbs/tb0459.pp

+ 34 - 0
tests/tbs/tb0459.pp

@@ -0,0 +1,34 @@
+{ %version=1.1 }
+{$mode objfpc}
+Type
+  IMyInterface = Interface
+    Function MyFunc : Integer;
+  end;
+
+  TMyClass = Class(TInterfacedObject,IMyInterface)
+    Function MyOtherFunction : Integer;
+    // The following fails in FPC.
+    Function IMyInterface.MyFunc = MyOtherFunction;
+  end;
+
+Function TMyClass.MyOtherFunction : Integer;
+
+begin
+  Result:=23;
+end;
+
+Var
+  A : TMyClass;
+  M : IMyInterface;
+  I : Integer;
+
+begin
+  A:=TMyClass.Create;
+  M:=A;
+  I:=M.MyFunc;
+  If (I<>23) then
+    begin
+    Writeln('Error calling interface');
+    Halt(1);
+    end;
+end.