mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 19:07:59 +02:00
15 lines
197 B
ObjectPascal
15 lines
197 B
ObjectPascal
program tw25101.pp;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
|
|
type
|
|
TTest = class(TObject)
|
|
public
|
|
procedure Test(); virtual; deprecated 'Do not use this method'; abstract;
|
|
end;
|
|
|
|
begin
|
|
end.
|