test/tools/javac/mandatoryWarnings/unchecked/B.java

Tue, 08 Jan 2013 13:47:57 +0000

author
vromero
date
Tue, 08 Jan 2013 13:47:57 +0000
changeset 1482
954541f13717
parent 0
959103a6100f
permissions
-rw-r--r--

8005167: execution time of combo tests in javac should be improved
Reviewed-by: jjg, jjh

     1 /*
     2  * /nodynamiccopyright/
     3  *
     4  * Test code for Test.sh
     5  */
     7 import java.util.ArrayList;
     8 import java.util.List;
    10 class B
    11 {
    12     void f() {
    13         List l = new ArrayList<String>();
    14         l.add("abc");
    15         l.add("def");
    16         l.add("ghi");
    17     }
    18 }

mercurial