mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
218 B
Kotlin
13 lines
218 B
Kotlin
package test
|
|
|
|
public trait InheritVararg: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(vararg p0: String?)
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(vararg p0: String?)
|
|
}
|
|
}
|