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

Mon, 24 Jan 2011 15:44:51 +0000

author
mcimadamore
date
Mon, 24 Jan 2011 15:44:51 +0000
changeset 829
ce6175cfe11e
parent 537
9d9d08922405
child 914
ca32f2986301
permissions
-rw-r--r--

6968793: issues with diagnostics
Summary: several diagnostic improvements
Reviewed-by: jjg

mcimadamore@537 1 /*
mcimadamore@537 2 * @test /nodynamiccopyright/
mcimadamore@537 3 * @bug 6939620
mcimadamore@537 4 *
mcimadamore@537 5 * @summary Switch to 'complex' diamond inference scheme
mcimadamore@537 6 * @author mcimadamore
mcimadamore@537 7 * @compile/fail/ref=Neg11.out Neg11.java -XDrawDiagnostics
mcimadamore@537 8 *
mcimadamore@537 9 */
mcimadamore@537 10
mcimadamore@537 11 class Neg11 {
mcimadamore@537 12
mcimadamore@537 13 void test() {
mcimadamore@537 14 class Foo<X extends Number> { }
mcimadamore@537 15 Foo<?> f1 = new UndeclaredName<>(); //this is deliberate: aim is to test erroneous path
mcimadamore@537 16 Foo<?> f2 = new UndeclaredName<>() {}; //this is deliberate: aim is to test erroneous path
mcimadamore@537 17 }
mcimadamore@537 18 }

mercurial