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)
}