fpc/bugs/bug0159.pp
1998-08-27 01:43:17 +00:00

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.