summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t118/before/test.java
blob: 012a188e5ad51ff4358023c5e6fcf9ce47327860 (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.*;
class Test {

  void method(Integer p) {
  }

  public void doSmth(ArrayList<Integer> p) {
      method(p.get(2));
  }
}