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