Files
kotlin/compiler/testData/loadJava/compiledKotlin/fromLoadJava/kotlinSignature/error/WrongProjectionKind.kt

11 lines
247 B
Kotlin
Vendored

//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()
}
}