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

10 lines
169 B
Kotlin

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