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

Thu, 16 Oct 2008 07:39:53 -0700

author
jjg
date
Thu, 16 Oct 2008 07:39:53 -0700
changeset 145
2c1ef6ec9413
parent 0
959103a6100f
permissions
-rw-r--r--

6759810: bad regression test causes source file to be deleted
Reviewed-by: mcimadamore

     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