blob: 152c9eae2e30cd6b3ba2c2acc023e396ebead756 [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
class Some {
void bar2(@Nullable Iterable<? extends String> dirs) {
if (dirs != null) {
for (String dir : dirs) {
}
}
}
}