test/tools/javac/generics/rawOverride/T6846972.java

Wed, 15 Jul 2009 10:25:01 +0100

author
mcimadamore
date
Wed, 15 Jul 2009 10:25:01 +0100
changeset 325
ad07b7ea9685
child 554
9d9f26857129
permissions
-rw-r--r--

6846972: cannot access member of raw type when erasure change overriding into overloading
Summary: fix of 6400189 caused a nasty problem in method resolution
Reviewed-by: jjg

mcimadamore@325 1 /*
mcimadamore@325 2 * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
mcimadamore@325 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@325 4 *
mcimadamore@325 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@325 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@325 7 * published by the Free Software Foundation.
mcimadamore@325 8 *
mcimadamore@325 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@325 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@325 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@325 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@325 13 * accompanied this code).
mcimadamore@325 14 *
mcimadamore@325 15 * You should have received a copy of the GNU General Public License version
mcimadamore@325 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@325 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@325 18 *
mcimadamore@325 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
mcimadamore@325 20 * CA 95054 USA or visit www.sun.com if you need additional information or
mcimadamore@325 21 * have any questions.
mcimadamore@325 22 */
mcimadamore@325 23
mcimadamore@325 24 /*
mcimadamore@325 25 * @test
mcimadamore@325 26 * @bug 6846972
mcimadamore@325 27 * @summary cannot access member of raw type when erasure change overriding into overloading
mcimadamore@325 28 * @author mcimadamore
mcimadamore@325 29 * @compile T6846972.java
mcimadamore@325 30 */
mcimadamore@325 31
mcimadamore@325 32 import java.util.EnumMap;
mcimadamore@325 33
mcimadamore@325 34 public class T6846972 {
mcimadamore@325 35
mcimadamore@325 36 enum Suit {
mcimadamore@325 37 CLUBS, DIAMONDS;
mcimadamore@325 38 }
mcimadamore@325 39
mcimadamore@325 40 static Object [] array = {
mcimadamore@325 41 Suit.CLUBS, "value1",
mcimadamore@325 42 Suit.DIAMONDS, "value2"
mcimadamore@325 43 };
mcimadamore@325 44
mcimadamore@325 45 static void test() {
mcimadamore@325 46 EnumMap map = new EnumMap(Suit.class);
mcimadamore@325 47 map.put(array[0], array[1]);
mcimadamore@325 48 }
mcimadamore@325 49 }

mercurial