Back to Intellij Community

VariableNeverRead

plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/VariableNeverRead.html

2025.3-rc-2192 B
Original Source

Reports local variables that are defined but never used afterward in the code.

Example:

fun example() {
      var local = 42 // Variable 'local' is never read
      local = 0
  }