summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t101/after/test.java
blob: 6344b428b46cfd0b648d695b5ce8b0489c2de184 (plain)
1
2
3
4
5
6
import java.util.*;
public class Test {
  void meth(ArrayList<Integer>[] p) {
    ArrayList<Integer> v = p[0];
  }
}