// "Surround with null check" "true" fun foo(x: String?) { bar(x) } fun bar(s: String) = s.hashCode()