Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
surroundWithNullCheck
/
objectQualifier.kt
blob: 0bc43f62743477ba848a5ce96e52622caba794f6 [
file
] [
log
] [
blame
]
// "Surround with null check" "true"
object
Obj
{
fun foo
(
x
:
Int
)
=
x
}
fun
use
(
arg
:
Int
?)
{
Obj
.
foo
(<
caret
>
arg
)
}