summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/thlp16.pp
blob: ff3bdb9821daec59dc2e59dd5d288f553f5616df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ %FAIL }

{ helpers may not be referenced in any way - test 2 }
program thlp16;

{$ifdef fpc}
  {$mode delphi}
{$endif}

type
  TObjectHelper = class helper for TObject
  end;

begin
  with TObjectHelper.Create do ;
end.