test/tools/javac/generics/diamond/neg/Neg10.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 'complex' diamond can infer type that is too specific
6 * @author mcimadamore
7 * @compile/fail/ref=Neg10.out -source 7 -Xlint:-options Neg10.java -XDrawDiagnostics
8 * @compile Neg10.java -XDrawDiagnostics
9 *
10 */
11
12 class Neg10 {
13 static class Foo<X> {
14 Foo(X x) {}
15 }
16
17 Foo<Number> fw = new Foo<>(1);
18 }

mercurial