summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t11/after/test.java
blob: 1491875ea2b7625d6a2eb49d8cb08bc6abfb8b16 (plain)
1
2
3
4
5
6
7
import java.util.Map;
public class Test {
    Map<String, Integer> f;
    void foo() {
      for (String i  : f.keySet()) {}
    }
}