5fa1774cc1
#KT-1924 In Progress #KT-2830 Fixed
8 lines
164 B
Kotlin
8 lines
164 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class MethodWithMappedClasses : Object() {
|
|
public open fun <T> copy(dest : MutableList<in T>, src : List<T>) {}
|
|
}
|