tw2359.pp 350 B

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