author | jjg |
Mon, 24 Jan 2011 16:38:56 -0800 | |
changeset 8223 | 638daa596494 |
parent 5520 | 86e4b9a9da40 |
child 25691 | 8d4664cdd4ce |
permissions | -rw-r--r-- |
511
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
1 |
/* |
5520 | 2 |
* Copyright (c) 2004, 2008, Oracle and/or its affiliates. All rights reserved. |
511
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
4 |
* |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
8 |
* |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
13 |
* accompanied this code). |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
14 |
* |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
18 |
* |
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
511
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
22 |
*/ |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
23 |
|
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
24 |
/* |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
25 |
* @test |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
26 |
* @bug 6450290 |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
27 |
* @summary Capture of nested wildcards causes type error |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
28 |
* @author Maurizio Cimadamore |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
29 |
* @compile/fail T6450290.java |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
30 |
*/ |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
31 |
|
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
32 |
public class T6450290 { |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
33 |
static class Box<X extends Box<?,?>, T extends X> { |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
34 |
T value; |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
35 |
Box<X, T> same; |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
36 |
} |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
37 |
|
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
38 |
static class A extends Box<A,A> {} |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
39 |
static class B extends Box<B,B> {} |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
40 |
public static void main(String[] args) { |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
41 |
Box<?,?> b = new Box<Box<A,A>,Box<A,A>>(); |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
42 |
b.value.same = new Box<B,B>(); //javac misses this bad assignment |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
43 |
} |
b3b5eadd2bca
6450290: Capture of nested wildcards causes type error
mcimadamore
parents:
diff
changeset
|
44 |
} |