报告局部变量的冗余初始值设定项。

示例:


  fun example() {
      var local = 42 // 初始值设定项是冗余的
      local = 0
      println(local)
  }