test/tools/javac/resolve/tests/InnerOverOuter.java

Mon, 01 Jul 2013 14:57:03 +0100

author
mcimadamore
date
Mon, 01 Jul 2013 14:57:03 +0100
changeset 1875
f559ef7568ce
parent 1599
9f0ec00514b6
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7034798: Ambiguity error for abstract method call is too eager
Summary: Javac should wait and see if ambiguous methods can be reconciled at the end of an overload resolution round
Reviewed-by: jjg, vromero

mcimadamore@1599 1 /*
mcimadamore@1599 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
mcimadamore@1599 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@1599 4 *
mcimadamore@1599 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@1599 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@1599 7 * published by the Free Software Foundation.
mcimadamore@1599 8 *
mcimadamore@1599 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@1599 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@1599 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@1599 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@1599 13 * accompanied this code).
mcimadamore@1599 14 *
mcimadamore@1599 15 * You should have received a copy of the GNU General Public License version
mcimadamore@1599 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@1599 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@1599 18 *
mcimadamore@1599 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
mcimadamore@1599 20 * or visit www.oracle.com if you need additional information or have any
mcimadamore@1599 21 * questions.
mcimadamore@1599 22 */
mcimadamore@1599 23
mcimadamore@1875 24 @TraceResolve(keys={"compiler.err.cant.apply.symbol"})
mcimadamore@1599 25 class Test {
mcimadamore@1599 26
mcimadamore@1599 27 //no annotation here - this should NOT even be considered!
mcimadamore@1599 28 void m(Integer i1, Integer i2) { }
mcimadamore@1599 29
mcimadamore@1599 30 //no annotation here - this should NOT even be considered!
mcimadamore@1599 31 void m(Object... o) { }
mcimadamore@1599 32
mcimadamore@1599 33 class Inner {
mcimadamore@1599 34 @Candidate
mcimadamore@1599 35 void m(String s) {
mcimadamore@1599 36 m(1, 1); //should fail
mcimadamore@1599 37 }
mcimadamore@1599 38 }
mcimadamore@1599 39 }

mercurial