summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t08/before/test.java
blob: e38a9aa3155d4c77997c5aac2d8d2587bac7a06f (plain)
1
2
3
4
5
6
public class Test {
    Integer[] f = new Integer[0];
    void foo() {
      for (Integer i  : f) {}
    }
}