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