mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 23:39:36 +02:00
19 lines
201 B
ObjectPascal
19 lines
201 B
ObjectPascal
{%FAIL}
|
|
|
|
{ destructors are not allowed }
|
|
program tchlp4;
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
TObjectHelper = class helper for TObject
|
|
destructor Destroy; override;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|
|
|