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)
|
|
}
|
|
} |