Files
kotlin-fork/compiler/testData/diagnostics/tests/override/InvisiblePotentialOverride.kt
T

8 lines
112 B
Kotlin
Vendored

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