mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
10 lines
169 B
Kotlin
10 lines
169 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class WrongValueParametersCount {
|
|
public open fun foo() : Int? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|