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