test/tools/javac/cast/6548436/T6548436c.java

Tue, 13 Jan 2009 13:28:20 +0000

author
mcimadamore
date
Tue, 13 Jan 2009 13:28:20 +0000
changeset 185
d57378c34fdb
parent 157
433ee48257c0
child 554
9d9f26857129
permissions
-rw-r--r--

6665356: Cast not allowed when both qualifying type and inner class are parameterized
Summary: Fixed parser and cats conversion in order to allow cast between generic inner classes
Reviewed-by: jjg

mcimadamore@157 1 /*
mcimadamore@157 2 * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
mcimadamore@157 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@157 4 *
mcimadamore@157 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@157 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@157 7 * published by the Free Software Foundation.
mcimadamore@157 8 *
mcimadamore@157 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@157 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@157 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@157 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@157 13 * accompanied this code).
mcimadamore@157 14 *
mcimadamore@157 15 * You should have received a copy of the GNU General Public License version
mcimadamore@157 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@157 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@157 18 *
mcimadamore@157 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
mcimadamore@157 20 * CA 95054 USA or visit www.sun.com if you need additional information or
mcimadamore@157 21 * have any questions.
mcimadamore@157 22 */
mcimadamore@157 23
mcimadamore@157 24 /*
mcimadamore@157 25 * @test
mcimadamore@157 26 * @bug 6548436
mcimadamore@157 27 * @summary Incorrect inconvertible types error
mcimadamore@157 28 * @author Maurizio Cimadamore
mcimadamore@157 29 *
mcimadamore@157 30 * @compile T6548436c.java
mcimadamore@157 31 */
mcimadamore@157 32
mcimadamore@157 33 public class T6548436c {
mcimadamore@157 34
mcimadamore@157 35 interface A<T extends A<? super T>> { }
mcimadamore@157 36
mcimadamore@157 37 interface B extends A<B> { }
mcimadamore@157 38
mcimadamore@157 39 static void test(A<?> a) {
mcimadamore@157 40 Object o = (B)a;
mcimadamore@157 41 }
mcimadamore@157 42 }

mercurial