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