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

4 lines
102 B
Kotlin
Vendored

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