mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
17 lines
231 B
Java
17 lines
231 B
Java
/*
|
|
* /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");
|
|
}
|
|
}
|