blob: 1491875ea2b7625d6a2eb49d8cb08bc6abfb8b16 [file] [log] [blame]
import java.util.Map;
public class Test {
Map<String, Integer> f;
void foo() {
for (String i : f.keySet()) {}
}
}