blob: 64c25e24012887d92223b3946abf2f26f13a1a39 [file] [log] [blame]
// "Surround with null check" "true"
fun foo(x: String?) {
if (x != null) {
bar(x)
}
}
fun bar(s: String) = s.hashCode()