mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
247 B
Kotlin
11 lines
247 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class WrongProjectionKind {
|
|
public open fun copy(p0 : Array<out Number>?, p1 : Array<out Number>?) : MutableList<Number>? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|