langtools/test/tools/javac/TryWithResources/ResourceOutsideTry.java
author jeff
Wed, 22 Jun 2011 10:10:54 -0700
changeset 9916 c35ecac744a5
parent 6148 3a8158299c51
permissions -rw-r--r--
7057046: Add embedded license to THIRD PARTY README Reviewed-by: lana

/*
 * @test  /nodynamiccopyright/
 * @bug 6911256 6964740 6965277
 * @author Maurizio Cimadamore
 * @summary Check that resource variable is not accessible from catch/finally clause
 * @compile/fail/ref=ResourceOutsideTry.out -XDrawDiagnostics ResourceOutsideTry.java
 */

class ResourceOutsideTry {
    void test() {
        try(MyResource c = new MyResource()) {
        //do something
        } catch (Exception e) {
            c.test();
        } finally {
            c.test();
        }
    }
    static class MyResource implements AutoCloseable {
        public void close() throws Exception {}
        void test() {}
    }
}