Back to Intellij Community

SelfAssignment

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

2025.3-rc-2244 B
Original Source

Reports assignments of a variable to itself.

The quick-fix removes the redundant assignment.

Example:

fun test() {
      var bar = 1
      bar = bar
  }

After the quick-fix is applied:

fun test() {
      var bar = 1
  }