tinterface3.pp 181 B

123456789101112
  1. { %VERSION=1.1 }
  2. {$mode objfpc}
  3. type
  4. IMyInterface = interface
  5. function f : longint;
  6. procedure p(a : longint);
  7. property x : longint read f write p;
  8. end;
  9. begin
  10. end.