mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
125 B
Kotlin
Vendored
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)
|
|
}
|