blob: d2211784060a8458ec6cc7d8a2ad7191d37409cb [file] [log] [blame]
package test
open class Base<T>() {
fun foo(): T = throw Exception()
}
class Inh() : Base<String>()