12 lines
231 B
Kotlin
12 lines
231 B
Kotlin
package test
|
|
|
|
public trait MutableToReadOnly: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: MutableList<String>)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: MutableList<String>)
|
|
}
|
|
} |