7fcca71b4b
#KT-25697 Fixed
9 lines
210 B
Kotlin
Vendored
9 lines
210 B
Kotlin
Vendored
// "Replace scope function with safe (?.) call" "true"
|
|
// WITH_RUNTIME
|
|
fun foo(a: String?) {
|
|
val b = a // comment1
|
|
// comment2
|
|
.let {
|
|
it<caret>.length
|
|
}
|
|
} |