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

8 lines
144 B
Plaintext
Vendored

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