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