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

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

     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  */
    12 class Neg10 {
    13     static class Foo<X> {
    14         Foo(X x) {}
    15     }
    17     Foo<Number> fw = new Foo<>(1);
    18 }

mercurial