mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
14 lines
282 B
Kotlin
14 lines
282 B
Kotlin
package test
|
|
|
|
public trait ReadOnlyToMutable: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: List<String>)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: List<String>)
|
|
}
|
|
} |