Files
kotlin/compiler/testData/loadJava/compiledKotlin/fromLoadJava/kotlinSignature/propagation/parameter/ChangeProjectionKind2.kt
2015-05-12 19:43:17 +02:00

15 lines
295 B
Kotlin
Vendored

package test
public interface ChangeProjectionKind2 {
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>)
}
}