fpc/tests/webtbs/tw22155.pp
Jonas Maebe a1923f02f8 * always mark symbols referenced by properties as "used"; in case the
property is private, the "used" tracking of the property itself will
    indicate whether the symbol is actually used (mantis #22155)

git-svn-id: trunk@23070 -
2012-11-27 16:40:51 +00:00

41 lines
631 B
ObjectPascal

{ %opt=-vn -Sen }
{$MODE DELPHI}
{.$DEFINE ALT_MODE}
type
TWrapper = class
strict private
type
TInternals = record
class procedure Z; static;
end;
class var
FInternals: TInternals;
private
class property Internals: TInternals read FInternals;
public
procedure Z;
end;
class procedure TWrapper.TInternals.Z;
begin
end;
procedure TWrapper.Z;
begin
{$IFNDEF ALT_MODE}
Internals.Z; { Class variable FInternals “unused” }
{$ELSE}
FInternals.Z; { Class property Internals “unused” }
{$ENDIF}
end;
begin
with TWrapper.Create do begin
Z;
Free;
end;
end.