// "Wrap with '?.let { ... }' call" "true" // WITH_RUNTIME fun foo(x: String?) { bar(x) } fun bar(s: String) = s.hashCode()