mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:07:55 +02:00

-- 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 -
26 lines
371 B
ObjectPascal
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. |