mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
279 B
Kotlin
15 lines
279 B
Kotlin
package test
|
|
|
|
public interface InheritReadOnliness {
|
|
|
|
public interface Super {
|
|
public fun foo(p: List<String>)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub: Super {
|
|
override fun foo(p: List<String>)
|
|
}
|
|
}
|