class Steep::Errors::UnresolvedOverloading

def initialize(node:, receiver_type:, method_name:, method_types:)

def initialize(node:, receiver_type:, method_name:, method_types:)
  super node: node
  @receiver_type = receiver_type
  @method_name = method_name
  @method_types = method_types
end

def to_s

def to_s
  "#{location_to_str}: UnresolvedOverloading: receiver=#{receiver_type}, method_name=#{method_name}, method_types=#{method_types.join(" | ")}"
end