mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
9 lines
172 B
Kotlin
9 lines
172 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class MethodWithMappedClasses {
|
|
public open fun <T> copy(dest : MutableList<in T>, src : List<T>) {}
|
|
}
|