Files
kotlin-fork/idea/testData/quickfix/nullables/unsafeInfixCall/afterUnsafeInfixCall.kt
T
2013-02-19 21:10:26 +04:00

4 lines
97 B
Kotlin

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