test/tools/javac/6758789/T6758789b.java

Fri, 24 Oct 2008 12:46:34 +0100

author
mcimadamore
date
Fri, 24 Oct 2008 12:46:34 +0100
changeset 161
ddd75a295501
child 384
ed31953ca025
permissions
-rw-r--r--

6758789: Some method resolution diagnostic should be improved
Summary: Recent work on diagnostics left out some resolution corner cases
Reviewed-by: jjg

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

mercurial