blob: 3a61d280b8a613be7f8e3dd43befa6da7f816b35 [file]
package test1;
import java.util.ArrayList;
import java.util.List;
public class CCTest1i {
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.
}
}