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

8 lines
180 B
Kotlin

package test
import java.util.*
public open class CustomProjectionKind : Object() {
public open fun foo() : MutableList<out Number> = throw UnsupportedOperationException()
}