blob: c5765c005aab9563dc57fe106863aedca7091a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ %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.
|