39090113e9
(cherry picked from commit 8f13c84)
12 lines
151 B
Plaintext
Vendored
12 lines
151 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
|
|
object Obj {
|
|
fun foo(x: Int) = x
|
|
}
|
|
|
|
fun use(arg: Int?) {
|
|
if (arg != null) {
|
|
Obj.foo(arg)
|
|
}
|
|
}
|