Files
kotlin/compiler/testData/loadJava/compiledKotlin/fromLoadJava/kotlinSignature/CustomProjectionKind.kt

9 lines
188 B
Kotlin
Vendored

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