aoqi@0: /* aoqi@0: * @test /nodynamiccopyright/ aoqi@0: * @bug 8025113 aoqi@0: * @author sogoel aoqi@0: * @summary Resources cannot be declared outside t-w-r block aoqi@0: * @compile/fail/ref=ResDeclOutsideTry.out -XDrawDiagnostics ResDeclOutsideTry.java aoqi@0: */ aoqi@0: aoqi@0: public class ResDeclOutsideTry implements AutoCloseable { aoqi@0: ResDeclOutsideTry tr1; aoqi@0: ResDeclOutsideTry tr2 = new ResDeclOutsideTry(); aoqi@0: aoqi@0: String test1() { aoqi@0: try (tr1 = new ResDeclOutsideTry(); tr2;) { aoqi@0: } aoqi@0: } aoqi@0: } aoqi@0: