Files
kotlin-fork/idea/testData/inspectionsLocal/unnecessaryVariable/varCopy.kt
T
2017-07-18 16:37:47 +03:00

7 lines
115 B
Kotlin
Vendored

// PROBLEM: none
fun sqrPlusOne(arg: Int): Int {
var <caret>other = arg
other++
return other * other
}