Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
objectQualifier.kt.after
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
)
}
}