mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:09:35 +02:00
19 lines
327 B
ObjectPascal
19 lines
327 B
ObjectPascal
|
|
{ Source provided for Free Pascal Bug Report 2651 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-08-23 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
{$mode objfpc}
|
|
{$inline on}
|
|
|
|
Type tMyClass=Class
|
|
Class Procedure InlineProc;Inline;
|
|
End;
|
|
|
|
Class Procedure tmyClass.InlineProc;Inline;
|
|
Begin
|
|
End;
|
|
|
|
Begin
|
|
tMyClass.InlineProc;
|
|
End.
|