Files
kotlin-fork/compiler/testData/loadKotlin/classFun/FunInParamSuper.kt
T

8 lines
106 B
Kotlin

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