Files
kotlin/compiler/testData/loadJava/compiledKotlin/classFun/FunInParamSuper.kt
2013-12-17 20:28:59 +04:00

8 lines
106 B
Kotlin

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