test/tools/javac/TryWithResources/ResDeclOutsideTry.java

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

     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  */
     9 public class ResDeclOutsideTry implements AutoCloseable {
    10     ResDeclOutsideTry tr1;
    11     ResDeclOutsideTry tr2 = new ResDeclOutsideTry();
    13     String test1() {
    14         try (tr1 = new ResDeclOutsideTry(); tr2;) {
    15         }
    16     }
    17 }

mercurial