blob: 0b5552adf722777340ae8689b94c3d58829bedfc [file] [log] [blame]
// "Surround with null check" "true"
fun foo(arg: Int?) {
if (arg != null) {
arg.hashCode()
}
}