6 lines
176 B
Plaintext
Vendored
6 lines
176 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'contains()'"
|
|
// IS_APPLICABLE_2: false
|
|
fun foo(list: List<String>): Int {
|
|
<caret>return if (list.contains("a")) 1 else 0
|
|
} |