fpc/tests/webtbf/tw32605.pp
Jonas Maebe 672afcdca2 * check for conflicts between procedure directives specified in the
implementation and "virtual" (if it's a virtual method), as "virtual"
    does not get repeated in the implementation and hence no conflicts get
    checked by default (mantis #32605)

git-svn-id: trunk@37887 -
2018-01-01 16:54:04 +00:00

40 lines
661 B
ObjectPascal

{ %fail }
{$ifdef fpc}
{$mode delphi}
{$endif}
program InlineClass;
type
TAncestor = class
public
procedure TestMethod; virtual;
end;
TDerived = class(TAncestor)
public
procedure TestMethod; override;
end;
procedure TAncestor.TestMethod; inline; // Virtual method with an 'inline' hint.
begin
WriteLn('Ancestor Method');
end;
procedure TDerived.TestMethod;
begin
WriteLn('Derived Method');
end;
var
TestClass: TAncestor;
begin
TestClass := TDerived.Create;
try
TestClass.TestMethod; // <-- TAncestor.TestMethod is called instead of TDerived.TestMethod
finally
TestClass.Free;
end;
end.