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

4 lines
78 B
Kotlin
Vendored

fun sqr(arg: Int): Int {
val <caret>other = arg
return other * other
}