713c6f13ae
See the comment in JetTypeMapper
12 lines
124 B
Kotlin
12 lines
124 B
Kotlin
trait A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
trait B : A
|
|
|
|
abstract class C : B
|
|
|
|
open class D : C() {
|
|
override fun foo(): Int = 42
|
|
}
|