| 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 | |
| } | |
| } |