// "Surround with null check" "true" fun foo(arg: Int?) { if (arg != null) { arg.hashCode() } }