tw2070.pp 447 B

12345678910111213141516171819202122
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 2070 }
  3. { Submitted by "MrNoop" on 2002-08-09 }
  4. { e-mail: [email protected] }
  5. {$mode objfpc}
  6. type
  7. TPersistent = class (TObject)
  8. public
  9. constructor Create(Proprio:TPersistent);virtual;
  10. end;
  11. TServeur = class (TPersistent)
  12. public
  13. constructor Create(Proprio:TPersistent);override;
  14. end;
  15. constructor TServeur.Create(Proprio:TPersistent);
  16. begin
  17. inherited Create; {<- lethal error (see above)}