Files
Vladimir Dolzhenko bab54c6d29 [kotlin] Improve test coverage of collected FUS quickfixes data
#KTIJ-389

GitOrigin-RevId: c8554b77a988a77484d1dada64353345b7a1fa35
2023-07-20 05:59:17 +00:00

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