test/tools/javac/6835430/A.java

Thu, 21 Feb 2013 15:26:46 +0000

author
mcimadamore
date
Thu, 21 Feb 2013 15:26:46 +0000
changeset 1599
9f0ec00514b6
parent 554
9d9f26857129
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8007461: Regression: bad overload resolution when inner class and outer class have method with same name
Summary: Fix regression in varargs method resolution introduced by bad refactoring
Reviewed-by: jjg

mcimadamore@297 1 /*
ohair@554 2 * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
mcimadamore@297 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@297 4 *
mcimadamore@297 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@297 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@297 7 * published by the Free Software Foundation.
mcimadamore@297 8 *
mcimadamore@297 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@297 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@297 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@297 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@297 13 * accompanied this code).
mcimadamore@297 14 *
mcimadamore@297 15 * You should have received a copy of the GNU General Public License version
mcimadamore@297 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@297 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@297 18 *
ohair@554 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 20 * or visit www.oracle.com if you need additional information or have any
ohair@554 21 * questions.
mcimadamore@297 22 */
mcimadamore@297 23
mcimadamore@297 24 class A<T extends A<T>> {
mcimadamore@297 25 class C {
mcimadamore@297 26 public T getT() { return null; }
mcimadamore@297 27 }
mcimadamore@297 28 }
mcimadamore@297 29
mcimadamore@297 30 class B extends A<B> {
mcimadamore@297 31 public class D extends A<B>.C {}
mcimadamore@297 32 }

mercurial