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

8 lines
141 B
Plaintext
Vendored

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