summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t120/before/test.java
blob: 0f65e57d94ee6f22fdc56f793a1f762ad9cdf9dd (plain)
1
2
3
4
5
6
7
8
9
10
class Test {

  void method(Integer p) {
  }

  public void doSmth(Integer[] p) {
      method(p[2]);
      System.out.println(p[3].intValue());
  }
}