Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
0e8e9e4173
1 changed files with 11 additions and 0 deletions
  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.