blob: 14ed086750567c02e8dc1f7c7d8b29665809706d [file] [log] [blame]
package test2;
import java.util.ArrayList;
import java.util.List;
public class CCTest2iv {
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
}
}