6 lines
122 B
Kotlin
Vendored
6 lines
122 B
Kotlin
Vendored
// "Surround with null check" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(list: List<String>?) {
|
|
for (element in <caret>list) {}
|
|
} |