Files
kotlin-fork/compiler/testData/readKotlinBinaryClass/classFun/FunInParamSuper.kt
T
Stepan Koltsov bfb1b6e7b5 read kotlin supertypes in JavaDescriptorResolver
+ tests
+ remove jet.Any from supers
2012-01-27 14:25:55 +04:00

8 lines
106 B
Kotlin

package test
open class Base<T>() {
fun foo(): T = throw Exception()
}
class Inh() : Base<String>()