summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t136/before/test.java
blob: e66f3a5f5bfa8c762ad2f7c2d018e5fdb2be8b46 (plain)
1
2
3
4
5
6
7
8
import java.util.*;
class Test {
  private void foo(Integer i) {
    ArrayList<Integer> ints = new ArrayList<Integer>();
    ints.add(i);
    Object j = constantaB == null ? ints : i;
  }
}