class RuboCop::Cop::Style::SymbolProc

def unsafe_hash_usage?(node)

See: https://github.com/rubocop/rubocop/issues/10864
def unsafe_hash_usage?(node)
  node.receiver&.hash_type? && %i[reject select].include?(node.method_name)
end