14 lines
144 B
Kotlin
Vendored
14 lines
144 B
Kotlin
Vendored
open class <caret>A {
|
|
private fun foo() {
|
|
|
|
}
|
|
|
|
// INFO: {"checked": "true"}
|
|
fun bar() {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
class B : A() {
|
|
|
|
} |