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