tw2409.pp 383 B

12345678910111213141516171819202122232425262728
  1. { %version=1.1 }
  2. { Source provided for Free Pascal Bug Report 2409 }
  3. { Submitted by "Mattias Gaertner" on 2003-03-07 }
  4. { e-mail: [email protected] }
  5. unit tw2409;
  6. {$mode objfpc}{$H+}
  7. interface
  8. type
  9. HDC = type integer;
  10. TMyClass = class
  11. procedure DoSomething(H: HDC);
  12. end;
  13. implementation
  14. { TMyClass }
  15. procedure TMyClass.DoSomething(H: HDC);
  16. begin
  17. end;
  18. end.