blob: 703b80bcdea368a6b2e63af6d01f62e1037f53b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ %NORUN }
{ class helpers can extend a subclass of the parent's extended class }
program tchlp25;
{$ifdef fpc}
{$mode delphi}
{$endif}
type
TObjectHelper = class helper for TObject
end;
TTest = class
end;
TTestHelper = class helper(TObjectHelper) for TTest
end;
begin
end.
|