test/tools/javac/6717241/T6717241a.java

Mon, 17 Oct 2011 12:54:33 +0100

author
mcimadamore
date
Mon, 17 Oct 2011 12:54:33 +0100
changeset 1108
b5d0b8effc85
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7097436: Project Coin: duplicate varargs warnings on method annotated with @SafeVarargs
Summary: Duplicate aliasing check during subtyping leads to spurious varargs diagnostic
Reviewed-by: jjg

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

mercurial