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