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

10 lines
180 B
Kotlin

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