summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t89/before/test.java
blob: c12161d8c76df439214b8b8efaa38c56b6d98a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.*;
public class Test {

    List<String> getArray(){
       return null;
    }

    void foo() {
        List<String> array = getArray();
        Collections.checkedList(array, String.class);
    }

}