Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/propagation/parameter/SubclassFromGenericAndNot.kt
Alexander Udalov 5fa1774cc1 Support hasStableParameterNames in KotlinSignature and propagation
#KT-1924 In Progress
 #KT-2830 Fixed
2014-03-19 23:24:28 +04:00

22 lines
503 B
Kotlin

package test
// Extracted from KT-3302, see Kt3302 test, as well
public trait SubclassFromGenericAndNot: Object {
public trait NonGeneric : Object {
public fun foo(p0: String)
public fun dummy() // to avoid loading as SAM interface
}
public trait Generic<T> : Object {
public fun foo(key: T)
public fun dummy() // to avoid loading as SAM interface
}
public trait Sub : NonGeneric, Generic<String> {
override fun foo(key: String)
}
}