*** empty log message ***

This commit is contained in:
florian 2000-11-17 15:44:20 +00:00
parent bbd2e6cdaf
commit 0e8e9e4173

11
tests/test/testitf5.pp Normal file
View File

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