tw2210.pp 337 B

1234567891011121314151617181920
  1. { Source provided for Free Pascal Bug Report 2210 }
  2. { Submitted by "peter" on 2002-10-30 }
  3. { e-mail: [email protected] }
  4. {$mode objfpc}
  5. unit tw2210;
  6. interface
  7. implementation
  8. type
  9. tclass = class
  10. function blah (p:integer) : boolean;
  11. end;
  12. function tclass.blah(p:integer):boolean;
  13. begin
  14. blah := true;
  15. end;
  16. end.