mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
119 B
Kotlin
Vendored
10 lines
119 B
Kotlin
Vendored
fun foo(i: Int) {
|
|
<caret>O.foo()
|
|
}
|
|
|
|
class O {
|
|
companion object {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
// EXPECTED: null |