T6717241b.java revision 383
0N/A/**
2362N/A * @test /nodynamiccopyright/
0N/A * @bug 6717241
0N/A * @summary some diagnostic argument is prematurely converted into a String object
0N/A * @author Maurizio Cimadamore
0N/A * @compile/fail/ref=T6717241b.out -XDstdout -XDrawDiagnostics T6717241b.java
2362N/A */
0N/A
2362N/Aclass T6717241b {
0N/A void test() {
0N/A //this will generate a 'cant.resolve.location'
0N/A Object o = v;
0N/A //this will generate a 'cant.resolve.location.args'
0N/A m1(1, "");
0N/A //this will generate a 'cant.resolve.location.args.params'
0N/A T6717241b.<Integer,Double>m2(1, "");
0N/A }
0N/A}
0N/A