summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t42/before/test.java
blob: dd72766db41432633dba730aef914755856dd426 (plain)
1
2
3
4
5
6
7
import java.util.*;
class Test {
  List l;
  void foo() {
     l = new ArrayList();
  }
}