5 lines
97 B
Kotlin
Vendored
5 lines
97 B
Kotlin
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: My?): Int {
|
|
return if (<caret>arg != null) arg.x else 42
|
|
} |