mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 06:49:27 +02:00
*** empty log message ***
This commit is contained in:
parent
b43c567edb
commit
6517a7c0d0
12
tests/webtbs/tw2041.pp
Normal file
12
tests/webtbs/tw2041.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user