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