/*
* /nodynamiccopyright/
*
* Test code for Test.sh
*/
import java.util.ArrayList;
import java.util.List;
class A
{
void f() {
List l = new ArrayList<String>();
l.add("abc");
l.add("def");
}
}