Files

8 lines
112 B
Kotlin
Vendored

// FIR_IDENTICAL
open class A {
private fun foo() : Int = 1
}
class B : A() {
fun foo() : String = ""
}