Browse Source

*** empty log message ***

florian 23 years ago
parent
commit
6517a7c0d0
1 changed files with 12 additions and 0 deletions
  1. 12 0
      tests/webtbs/tw2041.pp

+ 12 - 0
tests/webtbs/tw2041.pp

@@ -0,0 +1,12 @@
+{ %version=1.1}
+{$mode objfpc}
+
+type
+  ITest = interface                                                                                       
+    procedure Put(Key: Integer; Item: IUnknown);                                                                        
+    function Get(Key: Integer): IUnknown;                                                                              
+    property Item[Key: Integer]: IUnknown read Get write Put; default;                                                 
+  end;
+
+begin
+end.