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

9 lines
120 B
Kotlin
Vendored

// PROBLEM: none
val x: Number? = null
fun foo(): Int {
val <caret>y = x
if (y is Int) return y
return 0
}