langtools/test/tools/javac/generics/diamond/neg/Neg04.java
author mcimadamore
Wed, 14 Apr 2010 12:31:55 +0100
changeset 5321 c8efe769cb3b
child 5327 cdc146f667c7
permissions -rw-r--r--
6939620: Switch to 'complex' diamond inference scheme Summary: Implement new inference scheme for diamond operator that takes into account type of actual arguments supplied to constructor Reviewed-by: jjg, darcy

/*
 * @test /nodynamiccopyright/
 * @bug 6939620
 *
 * @summary  Switch to 'complex' diamond inference scheme
 * @author mcimadamore
 * @compile/fail/ref=Neg04.out Neg04.java -XDrawDiagnostics
 *
 */

class Neg04 {

    void test() {
        class Foo<V extends Number> {
            Foo(V x) {}
            <Z> Foo(V x, Z z) {}
        }
        Foo<String> n1 = new Foo<>("");
        Foo<? extends String> n2 = new Foo<>("");
        Foo<?> n3 = new Foo<>("");
        Foo<? super String> n4 = new Foo<>("");

        Foo<String> n5 = new Foo<>(""){};
        Foo<? extends String> n6 = new Foo<>(""){};
        Foo<?> n7 = new Foo<>(""){};
        Foo<? super String> n8 = new Foo<>(""){};

        Foo<String> n9 = new Foo<>("", "");
        Foo<? extends String> n10 = new Foo<>("", "");
        Foo<?> n11 = new Foo<>("", "");
        Foo<? super String> n12 = new Foo<>("", "");

        Foo<String> n13 = new Foo<>("", ""){};
        Foo<? extends String> n14 = new Foo<>("", ""){};
        Foo<?> n15 = new Foo<>("", ""){};
        Foo<? super String> n16 = new Foo<>("", ""){};
    }
}