mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
17 lines
338 B
Kotlin
17 lines
338 B
Kotlin
package test
|
|
|
|
public trait DeeplySubstitutedClassParameter2: Object {
|
|
|
|
public trait Super<T>: Object {
|
|
public fun foo(p0: T)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public trait Middle<E>: Super<E> {
|
|
}
|
|
|
|
public trait Sub: Middle<String> {
|
|
override fun foo(p0: String)
|
|
}
|
|
} |