blob: 84f2bd81e0f685650d0c462a3d80582bbfc5b044 [file] [log] [blame]
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