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

  void method(Integer p) {
  }

  public void doSmth(Integer[] p) {
      method(p[2]);
  }
}