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