bfb1b6e7b5
+ tests + remove jet.Any from supers
8 lines
106 B
Kotlin
8 lines
106 B
Kotlin
package test
|
|
|
|
open class Base<T>() {
|
|
fun foo(): T = throw Exception()
|
|
}
|
|
|
|
class Inh() : Base<String>()
|