ローカル変数の冗長なイニシャライザーを報告します。

例:


  fun example() {
      var local = 42 // イニシャライザーが冗長です
      local = 0
      println(local)
  }