1db7a0e0cc
#KT-27539 Fixed
16 lines
191 B
Kotlin
Vendored
16 lines
191 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
open class B {
|
|
val foo = "B"
|
|
}
|
|
|
|
class C : B() {
|
|
fun test(): String {
|
|
return <caret>Companion.foo
|
|
}
|
|
|
|
companion object {
|
|
val foo = "C"
|
|
}
|
|
}
|