test/tools/javac/foreach/7139681/T7139681neg.java

Mon, 23 Sep 2013 17:27:38 +0400

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 0
959103a6100f
permissions
-rw-r--r--

7154966: CRs found to be in Fixed state with no test and no noreg- keyword.
Reviewed-by: ksrini

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 7139681
     4  * @summary Enhanced for loop: local variable scope inconsistent with JLS
     5  *
     6  * @compile/fail/ref=T7139681neg.out -XDrawDiagnostics T7139681neg.java
     7  */
     8 class T7139681neg {
     9     void testArray() {
    10         for (int a : a) { }
    11     }
    13     void testIterable() {
    14         for (Integer b : b) { }
    15     }
    16 }

mercurial