Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
)
}