mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
151 B
Kotlin
Vendored
14 lines
151 B
Kotlin
Vendored
package test
|
|
|
|
interface A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
interface B : A<Int>
|
|
|
|
abstract class C : B
|
|
|
|
open class D : C() {
|
|
override fun foo(): Int = 42
|
|
}
|