10 lines
171 B
Kotlin
10 lines
171 B
Kotlin
package test
|
|
|
|
import java.util.*
|
|
|
|
public open class AddingNullability : Object() {
|
|
public open fun foo() : Int {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|