1234567891011121314151617181920212223242526 |
- { %NORUN }
- { test visibility of symbols in the extended type - protected }
- program tchlp85;
- {$ifdef fpc}
- {$mode delphi}
- {$endif}
- {$apptype console}
- uses
- uchlp82;
- type
- TFooHelper = class helper for TFoo
- function AccessField: Integer;
- end;
- function TFooHelper.AccessField: Integer;
- begin
- Result := Test4;
- end;
- begin
- end.
|