fpc/tests/test/tchlp4.pp
svenbarth 42129251da Those two tests shouldn't have been commited yet...
git-svn-id: branches/svenbarth/classhelpers@17100 -
2011-03-09 16:56:19 +00:00

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.