Files
kotlin-fork/idea/testData/quickfix/surroundWithNullCheck/unsafeCallInsideAnonymous.kt
T

6 lines
115 B
Kotlin
Vendored

// "Surround with null check" "true"
// WITH_RUNTIME
fun foo(arg: Int?) {
run(fun() = arg<caret>.hashCode())
}