12 lines
154 B
Kotlin
Vendored
12 lines
154 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
class Test {
|
|
fun test() {
|
|
<caret>Companion.foo
|
|
}
|
|
}
|
|
class Companion {
|
|
companion object {
|
|
val foo = ""
|
|
}
|
|
} |