summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t33/after/test.java
blob: 126292ad9322423153bcc9984c2c6d1bbdf1c22b (plain)
1
2
3
4
5
6
7
import java.util.*;
class Test {
  List<Integer> l;
  void foo() {
     l = new ArrayList<>();
  }
}