langtools/test/tools/javac/positions/T6253161a.java
changeset 37713 a3c34538726f
parent 37712 a34269e72fe1
parent 37646 84aba7335005
child 37714 7a0b1c7e7054
equal deleted inserted replaced
37712:a34269e72fe1 37713:a3c34538726f
     1 /*
       
     2  * @test  /nodynamiccopyright/
       
     3  * @bug     6253161
       
     4  * @summary Compiler will fail to find the correct location of serial warnings for anonymous inner classes
       
     5  * @author  Seetharama Avadhanam
       
     6  * @compile -Xlint:serial -XDdev T6253161a.java
       
     7  * @compile/ref=T6253161a.out -Xlint:serial -XDdev -XDrawDiagnostics T6253161a.java
       
     8  */
       
     9 import java.util.List;
       
    10 import java.util.ArrayList;
       
    11 
       
    12 public class T6253161a {
       
    13     @SuppressWarnings("unchecked")
       
    14     public void anonymousMethod(){
       
    15            List list = new ArrayList<String>(){
       
    16            static final long serialVersionUID = 1;
       
    17            List list = new ArrayList<Integer>();
       
    18            public List<Integer> getMyList(){
       
    19                 final List floatList = new ArrayList<Float>(){
       
    20                     // Blank ....
       
    21                 };
       
    22                 for(int i=0;i<10;i++)
       
    23                     list.add((Float)(floatList.get(i)) * 11.232F * i);
       
    24                 return list;
       
    25             }
       
    26          }.getMyList();
       
    27     }
       
    28 }