fpc/tests/tbf/tb0093.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

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.