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

Thu, 21 Feb 2013 14:43:51 -0800

author
rfield
date
Thu, 21 Feb 2013 14:43:51 -0800
changeset 1601
cd7340a84bb8
parent 996
384ea9a98912
child 1721
abd153854f16
permissions
-rw-r--r--

8008405: Now that metafactory is in place, add javac lambda serialization tests
Summary: Tests part of original langtools serialization review.
Reviewed-by: mcimadamore

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @ignore backing out 7034511, see 7040883
     4  * @bug     7034511 7040883
     5  * @summary Loophole in typesafety
     6  * @compile/fail/ref=T7034511b.out -XDrawDiagnostics T7034511b.java
     7  */
     9 class T7034511b {
    10     static class MyList<E> {
    11         E toArray(E[] e) { return null; }
    12     }
    14     void test(MyList<?> ml, Object o[]) {
    15         ml.toArray(o);
    16     }
    17 }

mercurial