mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
22 lines
273 B
ObjectPascal
22 lines
273 B
ObjectPascal
Type TParent = Object
|
|
Procedure SomeProc;
|
|
end;
|
|
|
|
TChild = Object(TParent)
|
|
Procedure SomeProc; virtual;
|
|
end;
|
|
|
|
|
|
Procedure TParent.someproc;
|
|
Begin
|
|
end;
|
|
|
|
|
|
procedure TChild.Someproc;
|
|
Begin
|
|
end;
|
|
|
|
|
|
|
|
Begin
|
|
end. |