956c6eeec7
#KT-9485 Fixed
12 lines
212 B
Kotlin
Vendored
12 lines
212 B
Kotlin
Vendored
class X {
|
|
open class <caret>A {
|
|
// INFO: {"checked": "true"}
|
|
fun foo(): Int = bar() + A.bar() + X.A.bar()
|
|
|
|
companion object {
|
|
fun bar() = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
class B : X.A |