675N/A/*
675N/A * @test /nodynamiccopyright/
675N/A * @bug 6970584
675N/A * @summary Flow.java should be more error-friendly
675N/A * @author mcimadamore
675N/A *
675N/A * @compile/fail/ref=FailOver02.out -XDrawDiagnostics -XDshouldStopPolicy=FLOW -XDdev FailOver02.java
675N/A */
675N/A
675N/Aclass Test implements AutoCloseable {
675N/A void test() {
675N/A try(Test t = null) {}
675N/A }
675N/A}