blob: 95880d51720a4c5946ad43f63fc192a59babe094 [file] [log] [blame]
import java.util.*;
class ForeachNotReported {
void f(List<String> list) {
for (String s : list) {}
}
}