713c6f13ae
See the comment in JetTypeMapper
8 lines
87 B
Kotlin
8 lines
87 B
Kotlin
trait A<T> {
|
|
fun foo(): T
|
|
}
|
|
|
|
class B : A<Int> {
|
|
override fun foo(): Int = 42
|
|
}
|