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

{ it's forbidden for a class helper to extend a record }
program tchlp11;

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

type
  TTest = record

  end;

  TTestHelper = class helper for TTest
  end;

begin

end.