langtools/test/tools/javac/T7179353/GenericsAndTWRCompileErrorTest.java
author sogoel
Thu, 05 Jun 2014 10:57:10 -0700
changeset 24797 850ebd4d80a7
parent 17998 02a5abb2ae2f
permissions -rw-r--r--
8044072: Group 2: create .out files for OverrideChecks tests in tools/javac dir Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17998
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     1
/*
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     4
 *
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     7
 * published by the Free Software Foundation.
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     8
 *
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    13
 * accompanied this code).
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    14
 *
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    18
 *
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    21
 * questions.
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    22
 */
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    23
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    24
/*
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    25
 * @test
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    26
 * @bug 7179353
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    27
 * @summary try-with-resources fails to compile with generic exception parameters
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    28
 * @compile GenericsAndTWRCompileErrorTest.java
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    29
 */
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    30
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    31
public class GenericsAndTWRCompileErrorTest {
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    32
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    33
    public static class Resource<E extends Exception> implements AutoCloseable {
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    34
        public void close() throws E { }
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    35
    }
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    36
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    37
    public <E extends Exception> void test() throws E {
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    38
        try (Resource<E> r = new Resource<E>()) {
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    39
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    40
        }
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    41
    }
02a5abb2ae2f 7179353: try-with-resources fails to compile with generic exception parameters
vromero
parents:
diff changeset
    42
}