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

changeset 537
9d9d08922405
child 914
ca32f2986301
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/javac/generics/diamond/neg/Neg11.java	Wed Apr 14 12:31:55 2010 +0100
     1.3 @@ -0,0 +1,18 @@
     1.4 +/*
     1.5 + * @test /nodynamiccopyright/
     1.6 + * @bug 6939620
     1.7 + *
     1.8 + * @summary  Switch to 'complex' diamond inference scheme
     1.9 + * @author mcimadamore
    1.10 + * @compile/fail/ref=Neg11.out Neg11.java -XDrawDiagnostics
    1.11 + *
    1.12 + */
    1.13 +
    1.14 +class Neg11 {
    1.15 +
    1.16 +    void test() {
    1.17 +        class Foo<X extends Number> { }
    1.18 +        Foo<?> f1 = new UndeclaredName<>(); //this is deliberate: aim is to test erroneous path
    1.19 +        Foo<?> f2 = new UndeclaredName<>() {}; //this is deliberate: aim is to test erroneous path
    1.20 +    }
    1.21 +}

mercurial