5 lines
96 B
Kotlin
Vendored
5 lines
96 B
Kotlin
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): My? {
|
|
return <caret>if (arg is My) arg else null
|
|
} |