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