langtools/test/tools/javac/TryWithResources/TwrOnNonResource.java
author darcy
Tue, 25 Jan 2011 17:02:56 -0800
changeset 8224 8f18e1622660
parent 6148 3a8158299c51
child 30715 099641abfb05
permissions -rw-r--r--
7013420: Project Coin: remove general expression support from try-with-resources statement Reviewed-by: mcimadamore, jjg

/*
 * @test  /nodynamiccopyright/
 * @bug 6911256 6964740 7013420
 * @author Joseph D. Darcy
 * @summary Verify invalid TWR block is not accepted.
 * @compile/fail -source 6 TwrOnNonResource.java
 * @compile/fail/ref=TwrOnNonResource.out -XDrawDiagnostics TwrOnNonResource.java
 */

class TwrOnNonResource {
    public static void main(String... args) {
        try(TwrOnNonResource aonr = new TwrOnNonResource()) {
            System.out.println(aonr.toString());
        }
        try(TwrOnNonResource aonr = new TwrOnNonResource()) {
            System.out.println(aonr.toString());
        } finally {;}
        try(TwrOnNonResource aonr = new TwrOnNonResource()) {
            System.out.println(aonr.toString());
        } catch (Exception e) {;}
    }

    /*
     * A close method, but the class is <em>not</em> Closeable or
     * AutoCloseable.
     */
    public void close() {
        throw new AssertionError("I'm not Closable!");
    }
}