mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
13 lines
232 B
Kotlin
13 lines
232 B
Kotlin
package test
|
|
|
|
public trait InheritMutability: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: MutableList<String>)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: MutableList<String>)
|
|
}
|
|
}
|