11a3482970
#KT-38632 Fixed
8 lines
156 B
Plaintext
Vendored
8 lines
156 B
Plaintext
Vendored
// "Replace scope function with safe (?.) call" "true"
|
|
// WITH_RUNTIME
|
|
fun foo(a: String?) {
|
|
val b = a
|
|
?.let {
|
|
it.length
|
|
}
|
|
} |