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