...
可以通过快速修复移除无效的方法重载。
示例:
class Example # 找不到 'Example' 类的 'call' 方法的非重载声明 def call: -> untyped | ... end
在应用快速修复后:
class Example def call: -> untyped end