summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t13/after/test.java
blob: 53b97a29e38cad43ea81167b05653737eb219c74 (plain)
1
2
3
4
5
6
7
import java.util.*;
public class Test {
    List<Integer> f;
    void foo() {
      f.add("val");
    }
}