test/tools/javac/TryWithResources/BadTwrSyntax.java

Tue, 25 Jan 2011 17:02:56 -0800

author
darcy
date
Tue, 25 Jan 2011 17:02:56 -0800
changeset 840
7f8794f9cc14
parent 609
13354e1abba7
child 850
2ab47c4cd618
permissions
-rw-r--r--

7013420: Project Coin: remove general expression support from try-with-resources statement
Reviewed-by: mcimadamore, jjg

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 6911256 6964740
     4  * @author Joseph D. Darcy
     5  * @summary Verify bad TWRs don't compile
     6  * @compile/fail -source 6 BadTwrSyntax.java
     7  * @compile/fail/ref=BadTwrSyntax.out  -XDrawDiagnostics BadTwrSyntax.java
     8  */
    10 import java.io.IOException;
    11 public class BadTwrSyntax implements AutoCloseable {
    12     public static void main(String... args) throws Exception {
    13         // illegal semicolon ending resources
    14         try(BadTwr twrflow = new BadTwr();) {
    15             System.out.println(twrflow.toString());
    16         }
    17     }
    19     public void close() {
    20         ;
    21     }
    22 }

mercurial