langtools/test/tools/javac/TryWithResources/ResDeclOutsideTry.java
changeset 21714 f5b7edec4304
child 27844 8b5d79870a2f
equal deleted inserted replaced
21713:b3fcc9c0fea3 21714:f5b7edec4304
       
     1 /*
       
     2  * @test  /nodynamiccopyright/
       
     3  * @bug 8025113
       
     4  * @author sogoel
       
     5  * @summary Resources cannot be declared outside t-w-r block
       
     6  * @compile/fail/ref=ResDeclOutsideTry.out -XDrawDiagnostics ResDeclOutsideTry.java
       
     7  */
       
     8 
       
     9 public class ResDeclOutsideTry implements AutoCloseable {
       
    10     ResDeclOutsideTry tr1;
       
    11     ResDeclOutsideTry tr2 = new ResDeclOutsideTry();
       
    12 
       
    13     String test1() {
       
    14         try (tr1 = new ResDeclOutsideTry(); tr2;) {
       
    15         }
       
    16     }
       
    17 }
       
    18