mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:48:02 +02:00
20 lines
285 B
ObjectPascal
20 lines
285 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 2400 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-02-26 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
|
|
{$mode objfpc}
|
|
|
|
Type tObj=Class
|
|
Class Constructor Init;
|
|
End;
|
|
|
|
Class Constructor tObj.Init;
|
|
Begin
|
|
End;
|
|
|
|
Begin
|
|
tObj.Init;
|
|
End.
|