test/tools/javac/6717241/T6717241a.java

Tue, 10 Apr 2012 08:15:25 -0700

author
ohair
date
Tue, 10 Apr 2012 08:15:25 -0700
changeset 1244
807ca8ffbeb4
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7074397: Build infrastructure changes (makefile re-write)
Summary: New makefiles transition, old and new living side by side for now.
Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser
Contributed-by: ohrstrom <fredrik.ohrstrom@oracle.com>, erikj <erik.joelsson@oracle.com>, ihse <magnus.ihse.bursie@oracle.com>, tgranat <torbjorn.granat@oracle.com>, ykantser <yekaterina.kantserova@oracle.com>

mcimadamore@80 1 /**
jjg@384 2 * @test /nodynamiccopyright/
mcimadamore@80 3 * @bug 6717241
mcimadamore@80 4 * @summary some diagnostic argument is prematurely converted into a String object
mcimadamore@80 5 * @author Maurizio Cimadamore
jjg@611 6 * @compile/fail/ref=T6717241a.out -XDrawDiagnostics T6717241a.java
mcimadamore@80 7 */
mcimadamore@80 8
mcimadamore@80 9 class T6717241a<X extends Object & java.io.Serializable> {
mcimadamore@80 10 X x;
mcimadamore@80 11 void test() {
mcimadamore@80 12 //this will generate a 'cant.resolve'
mcimadamore@80 13 Object o = x.v;
mcimadamore@80 14 //this will generate a 'cant.resolve.args'
mcimadamore@80 15 x.m1(1, "");
mcimadamore@80 16 //this will generate a 'cant.resolve.args.params'
mcimadamore@80 17 x.<Integer,Double>m2(1, "");
mcimadamore@80 18 }
mcimadamore@80 19 }

mercurial