mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
15 lines
272 B
ObjectPascal
15 lines
272 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 2305 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-01-03 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
Type tObject=Object
|
|
Constructor Init;
|
|
End;
|
|
|
|
Constructor tObject.Init;
|
|
Begin
|
|
End;
|
|
|
|
Begin
|
|
WriteLn(Int64(@tObject.Init));
|
|
End.
|