blob: 8f5d5910d69d4f60bc1c38ae2f736cef72ac64d3 [file]
package test3;
import java.util.ArrayList;
import java.util.List;
public class CCTest3i {
public static void main(String[] args) {
List<String> l;
l = new ArrayList<String>();
l.add("Hello, world");
for (String s : l) {
}
}
}