8 lines
151 B
Plaintext
Vendored
8 lines
151 B
Plaintext
Vendored
// "Replace 'if' expression with elvis expression" "true"
|
|
class Test {
|
|
var x: String? = ""
|
|
|
|
fun test() {
|
|
val i = x?.length ?: 0
|
|
}
|
|
} |