Files
kotlin/idea/testData/quickfix/surroundWithNullCheck/objectQualifier.kt

10 lines
125 B
Kotlin
Vendored

// "Surround with null check" "true"
object Obj {
fun foo(x: Int) = x
}
fun use(arg: Int?) {
Obj.foo(<caret>arg)
}