blob: 32c0e200de430d645c6f08104cb09a9c2d3e6d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ %FAIL }
{ Fields are not allowed in helpers }
program thlp8;
{$ifdef fpc}
{$mode delphi}
{$endif}
type
TObjectHelper = class helper for TObject
Field: Integer;
end;
begin
end.
|