6db0785615
#KT-18125 Fixed
7 lines
136 B
Kotlin
Vendored
7 lines
136 B
Kotlin
Vendored
// "Wrap with '?.let { ... }' call" "true"
|
|
// WITH_RUNTIME
|
|
fun foo(s: String) {}
|
|
|
|
fun bar(s: String?) {
|
|
foo(s<caret>.substring(1))
|
|
} |