mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 19:08:07 +02:00
24 lines
246 B
ObjectPascal
24 lines
246 B
ObjectPascal
{ %FAIL }
|
|
{$mode objfpc}
|
|
type
|
|
to1 = class
|
|
procedure p;virtual;
|
|
end;
|
|
|
|
to2 = class(to1)
|
|
function p : longint;override;
|
|
end;
|
|
|
|
procedure to1.p;
|
|
|
|
begin
|
|
end;
|
|
|
|
function to2.p : longint;
|
|
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|