test/tools/javac/6734819/T6734819c.java

Thu, 27 Aug 2009 11:08:27 -0700

author
jjg
date
Thu, 27 Aug 2009 11:08:27 -0700
changeset 384
ed31953ca025
parent 95
fac6b1beaa5a
child 2525
2eb010b6cb22
permissions
-rw-r--r--

6875336: some tests should use /nodynamiccopyright/
Reviewed-by: darcy

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