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