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