Kapt: Use correct type mapping mode while mapping super types (KT-27126)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// CORRECT_ERROR_TYPES
|
||||
// WITH_RUNTIME
|
||||
|
||||
class MappedList<out T, R>(val list: List<T>, private val function: (T) -> R) : AbstractList<R>(), List<R> {
|
||||
override fun get(index: Int) = function(list[index])
|
||||
override val size get() = list.size
|
||||
}
|
||||
Reference in New Issue
Block a user