25506d3be6
^KT-56551
16 lines
226 B
Kotlin
16 lines
226 B
Kotlin
interface Foo1 {
|
|
fun foo()
|
|
fun bar()
|
|
val str: String
|
|
}
|
|
|
|
interface Foo2 : Foo1 {
|
|
fun foo(i: Int)
|
|
fun bar(s: String)
|
|
val isBoo: Boolean
|
|
}
|
|
|
|
abstract class Usag<caret>e : Foo2 {
|
|
override fun foo() {}
|
|
}
|