author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30724 | 0686b5ea7958 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
30724
0686b5ea7958
8074514: Group 13d: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 5020448 |
4 |
* @summary Generic method allowing passing of types that don't match collection types |
|
5 |
* @author gafter |
|
6 |
* |
|
30724
0686b5ea7958
8074514: Group 13d: golden files for tests in tools/javac/generics dir
sogoel
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=UnsoundInference.out -XDrawDiagnostics UnsoundInference.java |
10 | 8 |
*/ |
9 |
||
10 |
import java.util.ArrayList; |
|
11 |
import java.util.Collection; |
|
12 |
||
13 |
public class UnsoundInference { |
|
14 |
||
15 |
public static void main(String[] args) { |
|
16 |
Object[] objArray = {new Object()}; |
|
17 |
ArrayList<String> strList = new ArrayList<String>(); |
|
18 |
transferBug(objArray, strList); |
|
19 |
String str = strList.get(0); |
|
20 |
} |
|
21 |
||
22 |
public static <Var> void transferBug(Var[] from, Collection<Var> to) { |
|
23 |
to.add(from[0]); |
|
24 |
} |
|
25 |
} |