mcimadamore@80: /** jjg@384: * @test /nodynamiccopyright/ mcimadamore@80: * @bug 6717241 mcimadamore@80: * @summary some diagnostic argument is prematurely converted into a String object mcimadamore@80: * @author Maurizio Cimadamore mcimadamore@80: * @compile/fail/ref=T6717241b.out -XDstdout -XDrawDiagnostics T6717241b.java mcimadamore@80: */ mcimadamore@80: mcimadamore@80: class T6717241b { mcimadamore@80: void test() { mcimadamore@80: //this will generate a 'cant.resolve.location' mcimadamore@80: Object o = v; mcimadamore@80: //this will generate a 'cant.resolve.location.args' mcimadamore@80: m1(1, ""); mcimadamore@80: //this will generate a 'cant.resolve.location.args.params' mcimadamore@80: T6717241b.m2(1, ""); mcimadamore@80: } mcimadamore@80: }