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

  void method(String... p) {
  }

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