Files
kotlin-fork/idea/testData/intentions/ifNullToElvis/OtherVar1.kt
T
2015-10-14 20:39:35 +03:00

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
}
}