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

9 lines
125 B
Kotlin
Vendored

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