blob: 4454098da8a7ce68260a10659cee5b5db48620b9 [file]
package test1;
import java.util.ArrayList;
import java.util.List;
public class CCTest1iv {
private static List<String> l; //Check the CC after <
public static void main(String[] args) {
l = new ArrayList<String>(); //Check the CC after <
l.add("Hello, world"); //Check the signature of the method provided by the CC
}
}