mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
13 lines
369 B
Plaintext
13 lines
369 B
Plaintext
package test
|
|
|
|
public trait MutableToReadOnly : java.lang.Object {
|
|
|
|
public trait Sub : test.MutableToReadOnly.Super {
|
|
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
|
|
}
|
|
|
|
public trait Super : java.lang.Object {
|
|
public abstract fun foo(/*0*/ p0 : jet.MutableList<jet.String>) : jet.Unit
|
|
}
|
|
}
|