blob: fbb2cdfbec720309c6af9a35e5d92401f5497be4 [file] [log] [blame]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
fun foo(x: String?, y: String) {
y.let { x?.let { it1 -> bar(it1, it) } }
}
fun bar(s: String, t: String) = s.hashCode() + t.hashCode()