8 lines
174 B
Kotlin
Vendored
8 lines
174 B
Kotlin
Vendored
// "Replace 'if' expression with elvis expression" "true"
|
|
class Test {
|
|
var x: String? = ""
|
|
|
|
fun test() {
|
|
val i = if (x != null) <caret>x.length else 0
|
|
}
|
|
} |