blob: 9b558cc0fe1a818e32cb28f20108391959bb7a33 [file] [log] [blame]
/*
* /nodynamiccopyright/
*
* Test code for Test.sh
*/
import java.util.ArrayList;
import java.util.List;
class B
{
void f() {
List l = new ArrayList<String>();
l.add("abc");
l.add("def");
l.add("ghi");
}
}