uw18087a.pp 215 B

12345678910111213141516171819
  1. unit uw18087a;
  2. interface
  3. {$mode delphi}
  4. type
  5. TFoo1 = class
  6. protected // it worked if "protected" was removed
  7. procedure Proc1; virtual;
  8. end;
  9. implementation
  10. procedure TFoo1.Proc1;
  11. begin
  12. end;
  13. end.