8 lines
149 B
Plaintext
Vendored
8 lines
149 B
Plaintext
Vendored
// "Surround with null check" "true"
|
|
// WITH_RUNTIME
|
|
|
|
fun foo(list: List<String>?) {
|
|
if (list != null) {
|
|
for (element in list) {}
|
|
}
|
|
} |