langtools/test/tools/javac/foreach/7139681/T7139681neg.java
changeset 18379 8dd20756448c
equal deleted inserted replaced
18378:00267721fe3a 18379:8dd20756448c
       
     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     }
       
    12 
       
    13     void testIterable() {
       
    14         for (Integer b : b) { }
       
    15     }
       
    16 }