test/tools/javac/generics/7034511/T7034511b.java

Fri, 03 May 2013 09:56:56 -0700

author
jjg
date
Fri, 03 May 2013 09:56:56 -0700
changeset 1721
abd153854f16
parent 996
384ea9a98912
child 1901
db2c539819dd
permissions
-rw-r--r--

8012728: Normalize @ignore comments on langtools tests
Reviewed-by: vromero, mcimadamore

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @ignore 7041019 Bogus type-variable substitution with array types with dependencies on accessibility check
     4  * @bug     7034511 7040883
     5  * @summary Loophole in typesafety
     6  * @compile/fail/ref=T7034511b.out -XDrawDiagnostics T7034511b.java
     7  */
     9 // backing out 7034511, see 7040883
    11 class T7034511b {
    12     static class MyList<E> {
    13         E toArray(E[] e) { return null; }
    14     }
    16     void test(MyList<?> ml, Object o[]) {
    17         ml.toArray(o);
    18     }
    19 }

mercurial