mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
13 lines
229 B
Kotlin
13 lines
229 B
Kotlin
package test
|
|
|
|
public trait InheritNotVararg: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: Array<out String>?)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: Array<out String>?)
|
|
}
|
|
}
|