Sha256: 12c81497294e29ea9f824773f26fcca09768fa6ac6f2f49365e93bb8523b83e4

Contents?: true

Size: 738 Bytes

Versions: 32

Compression:

Stored size: 738 Bytes

Contents

# @type var hash: Hash[Symbol, String]

a = [1]

# !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::String
hash = a.each.with_object("") do |x, y|
  # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
  hash = x
  # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::String
  hash = y
end

# !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Array[::Integer]
hash = a.each.with_index do |x, y|
  # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
  hash = x
  # !expects IncompatibleAssignment: lhs_type=::Hash[::Symbol, ::String], rhs_type=::Integer
  hash = y
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
steep-0.39.0 smoke/enumerator/a.rb
steep-0.38.0 smoke/enumerator/a.rb
steep-0.37.0 smoke/enumerator/a.rb
steep-0.36.0 smoke/enumerator/a.rb
steep-0.35.0 smoke/enumerator/a.rb
steep-0.34.0 smoke/enumerator/a.rb
steep-0.33.0 smoke/enumerator/a.rb
steep-0.32.0 smoke/enumerator/a.rb
steep-0.31.1 smoke/enumerator/a.rb
steep-0.31.0 smoke/enumerator/a.rb
steep-0.30.0 smoke/enumerator/a.rb
steep-0.29.0 smoke/enumerator/a.rb
steep-0.28.0 smoke/enumerator/a.rb
steep-0.27.0 smoke/enumerator/a.rb
steep-0.25.0 smoke/enumerator/a.rb
steep-0.24.0 smoke/enumerator/a.rb
steep-0.23.0 smoke/enumerator/a.rb
steep-0.22.0 smoke/enumerator/a.rb
steep-0.21.0 smoke/enumerator/a.rb
steep-0.20.0 smoke/enumerator/a.rb