mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 00:21:29 +00:00
7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
package test
|
|
|
|
public open class NotNullIntArray {
|
|
public constructor NotNullIntArray()
|
|
public open fun hi(): kotlin.IntArray!
|
|
}
|