3 lines
77 B
Kotlin
Vendored
3 lines
77 B
Kotlin
Vendored
fun foo(arg: Any?): Any? {
|
|
return <caret>if (arg != null) arg else null
|
|
} |