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