Files
kotlin-fork/idea/testData/intentions/foldInitializerAndIfToElvis/OtherVar1.kt
T

12 lines
199 B
Kotlin
Vendored

// IS_APPLICABLE: false
class C {
var v: String? = null
fun foo(p: List<String?>): Int {
val v = p[0]
<caret>if (this.v == null) return -1
return v!!.length
}
}