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