mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
309 B
Kotlin
Vendored
16 lines
309 B
Kotlin
Vendored
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
public interface InheritNotVararg {
|
|
|
|
public interface Super {
|
|
public fun foo(p0: Array<out String>?)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub: Super {
|
|
override fun foo(p0: Array<out String>?)
|
|
}
|
|
}
|