13 lines
207 B
Plaintext
Vendored
13 lines
207 B
Plaintext
Vendored
class X {
|
|
open class A {
|
|
|
|
companion object {
|
|
fun bar() = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
class B : X.A {
|
|
// INFO: {"checked": "true"}
|
|
fun foo(): Int = X.A.bar() + X.A.bar() + X.A.bar()
|
|
} |