fpc/tests/test/tfinal2.pp
florian ea00759588 + final modifier support for methods by Paul Ishenin
-- Zusammenführen von r13887 in ».«:
A    tests/test/tfinal1.pp
U    compiler/msgtxt.inc
U    compiler/msgidx.inc
U    compiler/pdecsub.pas
U    compiler/tokens.pas
U    compiler/symconst.pas
U    compiler/msg/errore.msg
U    compiler/utils/ppudump.pp
-- Zusammenführen von r13890 in ».«:
G    compiler/msgtxt.inc
G    compiler/msgidx.inc
U    compiler/nobj.pas
G    compiler/msg/errore.msg
-- Zusammenführen von r13891 in ».«:
A    tests/test/tfinal2.pp

git-svn-id: trunk@13938 -
2009-10-24 11:48:52 +00:00

26 lines
371 B
ObjectPascal

{ %fail}
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
TClassWithFinalMethod = class
public
procedure TestFinal; virtual; final;
end;
TClassTryOverrideFinal = class(TClassWithFinalMethod)
public
procedure TestFinal; override;
end;
procedure TClassWithFinalMethod.TestFinal;
begin
end;
procedure TClassTryOverrideFinal.TestFinal;
begin
end;
begin
end.