Files
kotlin-fork/compiler/testData/versionRequirement/allCompatibilityJvmDefault.kt
T
Mikhail Bogdanov 7bcbae9826 Fix requirements
2020-04-09 07:37:31 +02:00

27 lines
415 B
Kotlin
Vendored

package test
interface Base {
fun foo() {}
}
interface Derived : Base
interface BaseWithProperty {
val prop: String
get() = "123"
}
interface DerivedWithProperty : BaseWithProperty
interface Empty
interface EmptyWithNested {
interface Nested
}
interface WithAbstractDeclaration {
fun foo()
var prop: String
}
interface DerivedFromWithAbstractDeclaration : WithAbstractDeclaration