fpc/tests/tbf/tb0093.pp
2000-12-03 21:50:07 +00:00

25 lines
247 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.