Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/error/WrongProjectionKind.kt
2013-03-12 19:31:45 +04:00

10 lines
239 B
Kotlin

package test
import java.util.*
public open class WrongProjectionKind : Object() {
public open fun copy(p0 : Array<out Number>?, p1 : Array<out Number>?) : MutableList<Number>? {
throw UnsupportedOperationException()
}
}