10 lines
259 B
Plaintext
Vendored
10 lines
259 B
Plaintext
Vendored
// "Suppress 'IfNullToElvis' for fun foo" "true"
|
|
|
|
@Suppress("IfNullToElvis")
|
|
fun foo(p: List<String?>, b: Boolean) {
|
|
var v = p[0]
|
|
<caret>if (v == null) return
|
|
if (b) v = null
|
|
}
|
|
|
|
// TOOL: org.jetbrains.kotlin.idea.intentions.IfNullToElvisInspection |