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