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