mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
16 lines
304 B
Kotlin
16 lines
304 B
Kotlin
package test
|
|
|
|
public trait DeeplySubstitutedClassParameter: Object {
|
|
|
|
public trait Super<T>: Object {
|
|
public fun foo(p0: T)
|
|
}
|
|
|
|
public trait Middle<E>: Super<E> {
|
|
override fun foo(p0: E)
|
|
}
|
|
|
|
public trait Sub: Middle<String> {
|
|
override fun foo(p0: String)
|
|
}
|
|
} |