blob: 29fe3c66c74eb76db6361b24813797b1fe9be2f3 [file] [log] [blame]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
fun foo(x: String?) {
x?.let { bar(it) }
}
fun bar(s: String) = s.hashCode()