tw2018.pp 343 B

1234567891011121314151617181920
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 2018 }
  3. { Submitted by "Sergey Kosarevsky" on 2002-06-29 }
  4. { e-mail: [email protected] }
  5. Unit tw2018;
  6. Interface
  7. Type tExtObject=Object
  8. { The next line should be refused }
  9. Procedure Draw;External;
  10. End;
  11. Implementation
  12. Procedure tExtObject.Draw;External;
  13. Begin
  14. End.