mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
280 B
Kotlin
Vendored
15 lines
280 B
Kotlin
Vendored
package test
|
|
|
|
public interface InheritVarargPrimitive {
|
|
|
|
public interface Super {
|
|
public fun foo(vararg p0: Int)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub: Super {
|
|
override fun foo(vararg p0: Int)
|
|
}
|
|
}
|