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