713c6f13ae
See the comment in JetTypeMapper
10 lines
122 B
Kotlin
10 lines
122 B
Kotlin
trait A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
open class B : A<Int?> {
|
|
override fun foo(): Int? = 42
|
|
}
|
|
|
|
abstract class C : A<Int?>
|