12 lines
164 B
Kotlin
Vendored
12 lines
164 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class A {
|
|
private fun foo() {}
|
|
|
|
inner class B : A() {
|
|
private fun foo() {}
|
|
}
|
|
}
|
|
|
|
class C : A() {
|
|
private fun foo() {}
|
|
} |