mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
12 lines
219 B
Kotlin
12 lines
219 B
Kotlin
package test
|
|
|
|
public trait SubstitutedClassParameter: Object {
|
|
|
|
public trait Super<T>: Object {
|
|
public fun foo(p0: T)
|
|
}
|
|
|
|
public trait Sub: Super<String> {
|
|
override fun foo(p0: String)
|
|
}
|
|
} |