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

8 lines
156 B
Plaintext
Vendored

// "Replace 'if' expression with safe access expression" "true"
class Test {
var x: Any? = null
fun test() {
(x as? String)?.length
}
}