mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
13 lines
373 B
Plaintext
13 lines
373 B
Plaintext
package test
|
|
|
|
public trait InheritNotVarargInteger : java.lang.Object {
|
|
|
|
public trait Sub : test.InheritNotVarargInteger.Super {
|
|
public abstract override /*1*/ fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : jet.Unit
|
|
}
|
|
|
|
public trait Super : java.lang.Object {
|
|
public abstract fun foo(/*0*/ p0 : jet.Array<out jet.Int>?) : jet.Unit
|
|
}
|
|
}
|