5 lines
76 B
Kotlin
5 lines
76 B
Kotlin
// "Replace with safe (?.) call" "true"
|
|
fun foo(a: Int?) {
|
|
a?.plus(1)
|
|
}
|