6 lines
135 B
Kotlin
6 lines
135 B
Kotlin
package test
|
|
|
|
public open class NotNullObjectArray() : java.lang.Object() {
|
|
public open fun hi(): Array<Any> = throw Exception()
|
|
}
|