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

27 lines
390 B
ObjectPascal

{ %VERSION=1.1 }
{ %OPT=-Sew -vw }
{$MODE OBJFPC}
{ This tests that implemented abstract methods do not cause any warnings }
type
tmyclass = class
procedure myabstract; virtual; abstract;
end;
tmyclass2 = class(tmyclass)
procedure myabstract ; override;
end;
procedure tmyclass2.myabstract;
begin
end;
var
cla : tmyclass2;
Begin
cla := tmyclass2.create;
end.