class RuboCop::Cop::Lint::ShadowedException

def silence_warnings

def silence_warnings
  # Replaces Kernel::silence_warnings since it hides any warnings,
  # including the RuboCop ones
  old_verbose = $VERBOSE
  $VERBOSE = nil
  yield
ensure
  $VERBOSE = old_verbose
end