blob: 2a58a4dbf9b6bb7c33807adb9ab7d2de2185a33b [file] [log] [blame]
/*
* /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");
}
}