単純化できる型を報告します。

例:


  def test: ({type l[a] = Either[String, a]})#l[Int] = ???

クイックフィックス適用後:


  def test: Either[String, Int] = ???