10
|
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 T6253161.java
|
|
7 |
* @compile/ref=T6253161.out -Xlint:serial -XDdev -XDrawDiagnostics -XDstdout T6253161.java
|
|
8 |
*/
|
|
9 |
import java.util.List;
|
|
10 |
import java.util.ArrayList;
|
|
11 |
|
|
12 |
public class T6253161 {
|
|
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 |
List integerList = new ArrayList<Float>();
|
|
21 |
public List<Float> getMyList(){
|
|
22 |
for(int i=0;i<10;i++)
|
|
23 |
integerList.add((int)((Float.parseFloat(i+""))+(1.11F)));
|
|
24 |
return (List)(Object)integerList;
|
|
25 |
}
|
|
26 |
public void testMethods(){
|
|
27 |
//...
|
|
28 |
}
|
|
29 |
}.getMyList();
|
|
30 |
for(int i=0;i<10;i++)
|
|
31 |
list.add((Float)(floatList.get(i)) * 11.232F * i);
|
|
32 |
return list;
|
|
33 |
}
|
|
34 |
}.getMyList();
|
|
35 |
}
|
|
36 |
}
|