Files
kotlin-fork/idea/testData/quickfix/nullables/unsafeInfixCall/unsafeInfixCall.kt.after
T

4 lines
97 B
Plaintext
Vendored

// "Replace with safe (?.) call" "true"
fun test(a : Int?) : Int? {
return a?.compareTo(6);
}