mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
25 lines
311 B
ObjectPascal
25 lines
311 B
ObjectPascal
{ %FAIL }
|
|
|
|
{ overriding methods is forbidden in mode objfpc }
|
|
program thlp6;
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
uses
|
|
uhlp3;
|
|
|
|
type
|
|
TObjectHelperSub = class helper(TObjectHelper) for TObject
|
|
procedure TestFinal; override; final;
|
|
end;
|
|
|
|
procedure TObjectHelperSub.TestFinal;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|