zipWithIndex を使用せず、手動でインデックスを圧縮しているコードを報告します。
zipWithIndex
例:
var seq: Seq[Int] seq.zip(seq.indices)
クイックフィックス適用後:
var seq: Seq[Int] seq.zipWithIndex