5 lines
126 B
Kotlin
5 lines
126 B
Kotlin
// "Remove unnecessary non-null assertion (!!)" "false"
|
|
fun test(value : String) : Int {
|
|
return value<caret>!!.length()
|
|
}
|