Files
kotlin-fork/idea/testData/quickfix/smartCastImpossibleInIfThen/ifThenElse4.kt
T

8 lines
175 B
Kotlin
Vendored

// "Replace 'if' expression with elvis expression" "true"
class Test {
var x: Any? = null
fun test() {
val i = if (x is String) <caret>x.length else 0
}
}