{ %NORUN } program tw21921; {$mode Delphi}{$H+} type { THashEntry } THashEntry = record Key: string; Value: T; class function Create(const AKey: string; const AValue: T): THashEntry; static; inline; end; class function THashEntry.Create(const AKey: string; const AValue: T): THashEntry; begin Result.Key := AKey; Result.Value := AValue; end; var Entry: THashEntry; begin Entry := THashEntry.Create('One', 1); end.