unit uw23071; {$MODE DELPHI} interface type TWrapper = record class procedure Z; static; end; implementation class procedure TWrapper.Z; type TLocalInteger = Integer; begin end; end.