blob: dd4c68728a9aad7d541cf68f624e1734ba619400 [file] [log] [blame]
// "Surround with null check" "true"
// WITH_RUNTIME
fun foo(list: List<String>?) {
if (list != null) {
for (element in list) {}
}
}