7 lines
111 B
Kotlin
Vendored
7 lines
111 B
Kotlin
Vendored
// "Surround with null check" "true"
|
|
|
|
operator fun Int.invoke() = this
|
|
|
|
fun foo(arg: Int?) {
|
|
<caret>arg()
|
|
} |