mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
14 lines
270 B
Kotlin
14 lines
270 B
Kotlin
package test
|
|
|
|
public trait NotNullToNullable: Object {
|
|
|
|
public trait Super: Object {
|
|
public fun foo(p0: String)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public trait Sub: Super {
|
|
override fun foo(p0: String)
|
|
}
|
|
} |