fpc/tests/webtbs/tw2627.pp
2003-08-10 17:01:43 +00:00

19 lines
368 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 2627 }
{ Submitted by "Sergey Kosarevsky" on 2003-08-10 }
{ e-mail: netsurfer@au.ru }
{$mode objfpc}
Type tMyClass=Class
Procedure DoSomething;Virtual;Abstract;
Class Procedure Process(C:tMyClass);
End;
Class Procedure tMyClass.Process(C:tMyClass);
Begin
With C Do DoSomething;
End;
Begin
End.