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

15 lines
279 B
Kotlin
Vendored

package test
public interface SubstitutedClassParameter {
public interface Super<T> {
public fun foo(t: T)
public fun dummy() // to avoid loading as SAM interface
}
public interface Sub: Super<String> {
override fun foo(t: String)
}
}