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

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /*
2 * @test /nodynamiccopyright/
3 * @bug 7034511 7040883 7041019
4 * @summary Loophole in typesafety
5 * @compile/fail/ref=T7034511b.out -XDrawDiagnostics T7034511b.java
6 */
7
8 class T7034511b {
9 static class MyList<E> {
10 E toArray(E[] e) { return null; }
11 }
12
13 void test(MyList<?> ml, Object o[]) {
14 ml.toArray(o);
15 }
16 }

mercurial