summaryrefslogtreecommitdiff
path: root/tests/test/tinterface3.pp
blob: 86be926c9aa2d7d4c404d3f541382a490925be1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ %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.