2
0

tfinal1.pp 198 B

1234567891011121314151617
  1. { %fail}
  2. {$ifdef fpc}
  3. {$mode objfpc}
  4. {$endif}
  5. type
  6. TClassWithFinalMethod = class
  7. public
  8. procedure TestFinal; final;
  9. end;
  10. procedure TClassWithFinalMethod.TestFinal;
  11. begin
  12. end;
  13. begin
  14. end.