tw36223.pp 225 B

123456789101112131415161718
  1. { %FAIL }
  2. {$mode objfpc}
  3. {$modeswitch multihelpers}
  4. unit tw36223;
  5. interface
  6. uses
  7. SysUtils;
  8. type
  9. // ERROR: Compilation raised exception internally
  10. TMyHelper = class helper for TSomeObject
  11. end;
  12. implementation
  13. end.