报告无效的方法重载 (...)。 方法重载只有在该方法恰好有一个其他非重载定义时才有效。

可以通过快速修复移除无效的方法重载。

示例:

class Example
  # 找不到 'Example' 类的 'call' 方法的非重载声明
  def call: -> untyped | ...
end

在应用快速修复后:

class Example
  def call: -> untyped
end