报告可以简化的类型。
示例:
def test: ({type l[a] = Either[String, a]})#l[Int] = ???
在应用快速修复后:
def test: Either[String, Int] = ???