定義されているものの、コード内で後でまったく使用されていないローカル変数を報告します。

例:


  fun example() {
      var local = 42 // 変数 'local' はまったく使用されません
      local = 0
  }