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

Fri, 22 Mar 2013 12:43:09 +0000

author
mcimadamore
date
Fri, 22 Mar 2013 12:43:09 +0000
changeset 1655
c6728c9addff
parent 996
384ea9a98912
child 1721
abd153854f16
permissions
-rw-r--r--

8010303: Graph inference: missing incorporation step causes spurious inference error
Summary: Multiple equality constraints on inference vars are not used to generate new inference constraints
Reviewed-by: jjg

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

mercurial