test/tools/javac/generics/diamond/neg/Neg06.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /*
2 * @test /nodynamiccopyright/
3 * @bug 6939620 7020044
4 *
5 * @summary Check that diamond works where LHS is supertype of RHS (nilary constructor)
6 * @author mcimadamore
7 * @compile/fail/ref=Neg06.out Neg06.java -XDrawDiagnostics
8 *
9 */
10
11 class Neg06 {
12
13 static class CSuperFoo<X> {}
14 static class CFoo<X extends Number> extends CSuperFoo<X> {}
15
16 CSuperFoo<String> csf1 = new CFoo<>();
17 }

mercurial