Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/CustomProjectionKind.kt
2014-07-25 21:19:38 +04:00

8 lines
169 B
Kotlin

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