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