Files
kotlin-fork/compiler/testData/klibABI/severalInheritedImplementations/lib1/l1.kt.0
T
2023-05-24 08:17:59 +00:00

25 lines
391 B
Plaintext
Vendored

package lib1
interface I {
}
interface J {
}
interface Default {
fun foo(): String = "Default v1"
val bar: String get() = "Default v1"
}
interface RemovedDefault {
fun foo(): String = "RemovedDefault v1"
val bar: String get() = "RemovedDefault v1"
}
open class Unrelated
abstract class AbstractUnrelated
open class WithFakeOverride : I
open class WithRealOverride : I