blob: 4c5b508cb3375d82fa057af7d3ae1cc6a94a44d3 [file]
package test1;
import java.util.ArrayList;
import java.util.List;
public class CCTest1v {
private static List<String> l;
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
}
}