tw2359.pp 337 B

1234567891011121314151617181920
  1. { %FAIL }
  2. { Source provided for Free Pascal Bug Report 2359 }
  3. { Submitted by "Sergey Kosarevsky" on 2003-02-06 }
  4. { e-mail: [email protected] }
  5. {$mode objfpc}
  6. Type tObj=Class
  7. ClassFlags:Longint;Static;
  8. Class Constructor Init;
  9. End;
  10. Class Constructor tObj.Init;
  11. Begin
  12. ClassFlags:=0;
  13. End;
  14. Begin
  15. tObj.Init;
  16. End.