< prev index next >

test/langtools/tools/javac/diags/examples/VarInTryWithResourcesNotSupportedInSource.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 // key: compiler.err.feature.not.supported.in.source.plural
  25 // key: compiler.misc.feature.var.in.try.with.resources
  26 // key: compiler.warn.source.no.bootclasspath
  27 // options: -source 8
  28 
  29 class VarInTryWithResourcesNotSupportedInSource {
  30     void m() {
  31         AutoCloseable ac = new CloseableImpl();
  32 
  33         try (ac) {
  34         }
  35     }
  36 }
  37 
  38 class CloseableImpl implements AutoCloseable {
  39     @Override
  40     public void close() throws Exception {
  41     }
  42 }


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 // key: compiler.err.feature.not.supported.in.source.plural
  25 // key: compiler.misc.feature.var.in.try.with.resources
  26 // options: -source 8 -Xlint:-options

  27 
  28 class VarInTryWithResourcesNotSupportedInSource {
  29     void m() {
  30         AutoCloseable ac = new CloseableImpl();
  31 
  32         try (ac) {
  33         }
  34     }
  35 }
  36 
  37 class CloseableImpl implements AutoCloseable {
  38     @Override
  39     public void close() throws Exception {
  40     }
  41 }
< prev index next >