6 lines
90 B
Kotlin
6 lines
90 B
Kotlin
package test
|
|
|
|
public open class NotNullMethod() {
|
|
public open fun hi(): String = ""
|
|
}
|