blob: e0285289cf1b75fd6e10c20d7feb397db87c0a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ %fail}
{$ifdef fpc}
{$mode objfpc}
{$endif}
type
TClassWithFinalMethod = class
public
procedure TestFinal; final;
end;
procedure TClassWithFinalMethod.TestFinal;
begin
end;
begin
end.
|