15 lines
283 B
Kotlin
15 lines
283 B
Kotlin
package test
|
|
|
|
public trait InheritVararg: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(vararg p0: String?)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(vararg p0: String?)
|
|
}
|
|
}
|