*** empty log message ***

This commit is contained in:
florian 2002-07-16 12:33:15 +00:00
parent b43c567edb
commit 6517a7c0d0

12
tests/webtbs/tw2041.pp Normal file
View File

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