uthintfn.pp 370 B

12345678910111213141516171819202122232425262728
  1. { %CPU=wasm32 }
  2. Unit uthintfn;
  3. {$mode objfpc}
  4. {$h+}
  5. interface
  6. type
  7. {$M+}
  8. TNested = class
  9. Type
  10. TMyInterface = Interface ['{76DC0D03-376C-45AA-9E0C-B3546B0C7208}']
  11. Procedure DoA(a : Integer);
  12. Procedure DoA;
  13. function doB : Integer;
  14. function doc(a : integer) : integer;
  15. end;
  16. end;
  17. implementation
  18. end.