mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
8 lines
233 B
Plaintext
8 lines
233 B
Plaintext
// "Replace scope function with safe (?.) call" "true"
|
|
// WITH_STDLIB
|
|
fun foo(a: String?) {
|
|
a?.apply { ->
|
|
this.length
|
|
}
|
|
}
|
|
// FUS_QUICKFIX_NAME: org.jetbrains.kotlin.idea.quickfix.ReplaceWithSafeCallForScopeFunctionFix |