tw2305.pp 272 B

1234567891011121314
  1. { Source provided for Free Pascal Bug Report 2305 }
  2. { Submitted by "Sergey Kosarevsky" on 2003-01-03 }
  3. { e-mail: [email protected] }
  4. Type tObject=Object
  5. Constructor Init;
  6. End;
  7. Constructor tObject.Init;
  8. Begin
  9. End;
  10. Begin
  11. WriteLn(Int64(@tObject.Init));
  12. End.