Back to Intellij Community

KotlinUnreachableCode

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

2025.3-rc-2268 B
Original Source

Reports code statements are unreachable for execution.

The quick-fix removes unreachable code.

Example:

fun value(): Int {
      return 42
      print("Hello, world !")
  }

After the quick-fix is applied:

fun value(): Int {
      return 42
  }