test/tools/javac/enum/forwardRef/T6425594.java

Tue, 08 Jan 2013 13:47:57 +0000

author
vromero
date
Tue, 08 Jan 2013 13:47:57 +0000
changeset 1482
954541f13717
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8005167: execution time of combo tests in javac should be improved
Reviewed-by: jjg, jjh

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug     6424491
     4  * @summary javac accepts illegal forward references
     5  * @author  Peter von der Ah\u00e9
     6  * @compile/fail/ref=T6425594.out -XDrawDiagnostics -XDuseBeforeDeclarationWarning T6425594.java
     7  */
     9 public class T6425594 {
    10     static int x = T6425594.x;
    11     static final int y = z;
    12     static final int z = 0;
    13 }

mercurial