langtools/test/tools/javac/generics/diamond/7188968/T7188968.java
author mcimadamore
Wed, 26 Sep 2012 14:22:41 +0100
changeset 14051 9097cec96212
permissions -rw-r--r--
7188968: New instance creation expression using diamond is checked twice Summary: Unify method and constructor check logic Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 7188968
 *
 * @summary  Diamond: javac generates diamond inference errors when in 'finder' mode
 * @author mcimadamore
 * @compile/fail/ref=T7188968.out -Xlint:unchecked -XDrawDiagnostics T7188968.java
 *
 */
import java.util.List;

class T7188968 {

    static class Foo<X> {
        Foo(List<X> ls, Object o) { }
        static <Z> Foo<Z> makeFoo(List<Z> lz, Object o) { return null; }
    }

    void test(List l) {
        new Foo(l, unknown);
        new Foo(l, unknown) { };
        new Foo<>(l, unknown);
        Foo.makeFoo(l, unknown);
    }
}