mcimadamore@238: /* mcimadamore@238: * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. mcimadamore@238: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@238: * mcimadamore@238: * This code is free software; you can redistribute it and/or modify it mcimadamore@238: * under the terms of the GNU General Public License version 2 only, as mcimadamore@238: * published by the Free Software Foundation. mcimadamore@238: * mcimadamore@238: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@238: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@238: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@238: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@238: * accompanied this code). mcimadamore@238: * mcimadamore@238: * You should have received a copy of the GNU General Public License version mcimadamore@238: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@238: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@238: * mcimadamore@238: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, mcimadamore@238: * CA 95054 USA or visit www.sun.com if you need additional information or mcimadamore@238: * have any questions. mcimadamore@238: */ mcimadamore@238: mcimadamore@238: /** mcimadamore@238: * @test mcimadamore@238: * @bug 6799605 mcimadamore@238: * @summary Basic/Raw formatters should use type/symbol printer instead of toString() mcimadamore@238: * @author mcimadamore mcimadamore@238: * @compile/fail/ref=T6799605.out -XDrawDiagnostics T6799605.java mcimadamore@296: * @compile/fail/ref=T6799605.out -XDoldDiags -XDrawDiagnostics T6799605.java mcimadamore@238: */ mcimadamore@238: mcimadamore@238: class T6799605 { mcimadamore@238: mcimadamore@238: > void m(T6799605 x1) {} mcimadamore@238: void m(T6799605 x1, T6799605 x2) {} mcimadamore@238: void m(T6799605 x1, T6799605 x2, T6799605 x3) {} mcimadamore@238: mcimadamore@238: void test(T6799605 t) { mcimadamore@238: m(t); mcimadamore@238: m(t, t); mcimadamore@238: m(t, t, t); mcimadamore@238: } mcimadamore@238: }