956c6eeec7
#KT-9485 Fixed
13 lines
195 B
Plaintext
Vendored
13 lines
195 B
Plaintext
Vendored
class X {
|
|
open class A {
|
|
|
|
companion object {
|
|
fun bar() = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
class B : X.A {
|
|
// INFO: {"checked": "true"}
|
|
fun foo(): Int = bar() + bar() + bar()
|
|
} |