Files
2013-12-17 20:28:59 +04:00

8 lines
106 B
Kotlin
Vendored

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