5 lines
94 B
Kotlin
5 lines
94 B
Kotlin
// "Remove elvis operator" "true"
|
|
fun foo(a: String) {
|
|
val b : String = <caret>a ?: "s"
|
|
}
|