mcimadamore@161: /* mcimadamore@161: * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved. mcimadamore@161: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@161: * mcimadamore@161: * This code is free software; you can redistribute it and/or modify it mcimadamore@161: * under the terms of the GNU General Public License version 2 only, as mcimadamore@161: * published by the Free Software Foundation. mcimadamore@161: * mcimadamore@161: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@161: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@161: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@161: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@161: * accompanied this code). mcimadamore@161: * mcimadamore@161: * You should have received a copy of the GNU General Public License version mcimadamore@161: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@161: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@161: * mcimadamore@161: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, mcimadamore@161: * CA 95054 USA or visit www.sun.com if you need additional information or mcimadamore@161: * have any questions. mcimadamore@161: */ mcimadamore@161: mcimadamore@161: /* mcimadamore@161: * @test mcimadamore@161: * @bug 6758789 mcimadamore@161: * @summary 6758789: Some method resolution diagnostic should be improved mcimadamore@161: * @author Maurizio Cimadamore mcimadamore@161: * mcimadamore@161: * @compile/fail/ref=T6758789a.out -XDrawDiagnostics T6758789a.java mcimadamore@161: */ mcimadamore@161: mcimadamore@161: class T6758789a { mcimadamore@161: void m1() {} mcimadamore@161: void m2(int i) {} mcimadamore@161: void test() { mcimadamore@161: m1(1); mcimadamore@161: m2(); mcimadamore@161: } mcimadamore@161: }