test/tools/javac/6734819/T6734819c.java

Thu, 06 Jun 2013 15:33:40 +0100

author
mcimadamore
date
Thu, 06 Jun 2013 15:33:40 +0100
changeset 1811
349160289ba2
parent 384
ed31953ca025
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8008627: Compiler mishandles three-way return-type-substitutability
Summary: Compiler should not enforce an order in how ambiguous methods should be resolved
Reviewed-by: jjg, vromero

mcimadamore@95 1 /*
jjg@384 2 * @test /nodynamiccopyright/
mcimadamore@95 3 * @bug 6734819
mcimadamore@95 4 * @summary Javac performs flows analysis on already translated classes
mcimadamore@95 5 * @author Maurizio Cimadamore
mcimadamore@95 6 *
mcimadamore@95 7 * @compile/fail/ref=T6734819c.out -XDrawDiagnostics -Xlint:all -XDverboseCompilePolicy T6734819c.java
mcimadamore@95 8 */
mcimadamore@95 9 class Y extends W {}
mcimadamore@95 10 class W extends Z {}
mcimadamore@95 11
mcimadamore@95 12 class Z {
mcimadamore@95 13 void m(Z z) {
mcimadamore@95 14 return;
mcimadamore@95 15 W w = (W)z;
mcimadamore@95 16 }
mcimadamore@95 17 }

mercurial