af2de09840
#KT-11017 In Progress
16 lines
213 B
Kotlin
Vendored
16 lines
213 B
Kotlin
Vendored
// NAME: X
|
|
class A {
|
|
open class B
|
|
|
|
// SIBLING:
|
|
class <caret>C : B() {
|
|
// INFO: {checked: "true"}
|
|
private fun foo() {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
foo()
|
|
}
|
|
}
|
|
} |