Files
kotlin-fork/idea/testData/quickfix/surroundWithNullCheck/invokeUnsafe.kt
T
2016-06-13 15:33:36 +03:00

7 lines
111 B
Kotlin
Vendored

// "Surround with null check" "true"
operator fun Int.invoke() = this
fun foo(arg: Int?) {
<caret>arg()
}