mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
10 lines
244 B
Kotlin
10 lines
244 B
Kotlin
// "Replace scope function with safe (?.) call" "true"
|
|
// WITH_STDLIB
|
|
var i = 0
|
|
|
|
fun foo(a: String?) {
|
|
i = a.run {
|
|
length<caret>
|
|
}
|
|
}
|
|
// FUS_QUICKFIX_NAME: org.jetbrains.kotlin.idea.quickfix.ReplaceWithSafeCallForScopeFunctionFix |