mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
15 lines
291 B
Kotlin
Vendored
15 lines
291 B
Kotlin
Vendored
package test
|
|
|
|
public interface MutableToReadOnly {
|
|
|
|
public interface Super {
|
|
public fun foo(p: MutableList<String>)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub: Super {
|
|
override fun foo(p: MutableList<String>)
|
|
}
|
|
}
|