blob: fac4793147b49470e35bf92a68a7b82881ab4e03 [file] [log] [blame]
// "Surround with null check" "true"
object Obj {
fun foo(x: Int) = x
}
fun use(arg: Int?) {
if (arg != null) {
Obj.foo(arg)
}
}