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

5 lines
71 B
Kotlin
Vendored

fun test(): Int {
val x = 1
val <caret>y = x
return x + y
}