summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t111/after/test.java
blob: e257e485d6bbc4d5b87e473f859b14c4149a0598 (plain)
1
2
3
4
5
6
7
public class Test {
  void method(Integer[] i) {
    if (i == 0) {
      i++;
    }
  }
}