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

Wed, 08 Oct 2014 14:16:40 -0700

author
asaha
date
Wed, 08 Oct 2014 14:16:40 -0700
changeset 2586
f5e5ca7505e2
parent 0
959103a6100f
permissions
-rw-r--r--

Merge

     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