blob: 4680dd5ab3312f40b67f26b20cfa34947f3879dd [file]
package test1;
import java.util.ArrayList;
import java.util.List;
public class CCTest1 {
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
l.get(0).indexOf("Hello"); //Check the methods provided after the second dot. Check the type of the variable l shown after the first dot.
}
}