mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
22 lines
209 B
Kotlin
Vendored
22 lines
209 B
Kotlin
Vendored
abstract class A : I1 {
|
|
open fun a(){}
|
|
}
|
|
|
|
interface I1 {
|
|
fun i1()
|
|
fun i()
|
|
}
|
|
|
|
interface I2 {
|
|
fun i2()
|
|
fun a()
|
|
}
|
|
|
|
interface I3 {
|
|
fun i()
|
|
}
|
|
|
|
abstract class B : I2, A(), I3 {
|
|
<caret>
|
|
}
|