Files
kotlin/compiler/testData/loadJava/kotlinSignature/error/WrongValueParametersCount.kt

10 lines
180 B
Kotlin

package test
import java.util.*
public open class WrongValueParametersCount : Object() {
public open fun foo() : Int? {
throw UnsupportedOperationException()
}
}