tw41274.pp 210 B

123456789101112131415
  1. { %fail }
  2. {$mode objfpc}
  3. type
  4. tt = class
  5. ff: byte;
  6. property NewInstance: byte read ff;
  7. constructor Create;
  8. end;
  9. constructor tt.Create;
  10. begin // Error: Internal error 200305108
  11. end;
  12. begin
  13. end.