8 lines
112 B
Kotlin
Vendored
8 lines
112 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class A {
|
|
private fun foo() : Int = 1
|
|
}
|
|
|
|
class B : A() {
|
|
fun foo() : String = ""
|
|
} |