Files
kotlin-fork/idea/testData/quickfix/wrapWithSafeLetCall/invokeUnsafe.kt
T

8 lines
133 B
Kotlin
Vendored

// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
operator fun Int.invoke() = this
fun foo(arg: Int?) {
<caret>arg()
}