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