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

4 lines
102 B
Kotlin

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