瀏覽代碼

*** empty log message ***

florian 25 年之前
父節點
當前提交
0e8e9e4173
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      tests/test/testitf5.pp

+ 11 - 0
tests/test/testitf5.pp

@@ -0,0 +1,11 @@
+{ $version >= 1.1}
+{$mode objfpc}
+type
+  IMyInterface = interface
+    function f : longint;
+    procedure p(a : longint);
+    property x : longint read f write p;
+  end;
+
+begin
+end.