test/langtools/tools/javac/typeVariableCast/TypeVariableCastTest.java
author dmarkov
Mon, 23 Sep 2019 17:18:03 +0100
changeset 58328 fe46ee1d42ee
parent 51827 07179f7db03d
permissions -rw-r--r--
8230782: Robot.createScreenCapture() fails if “awt.robot.gtk” is set to false Reviewed-by: prr, serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
51827
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     1
/*
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     4
 *
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     7
 * published by the Free Software Foundation.
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     8
 *
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    13
 * accompanied this code).
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    14
 *
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    18
 *
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    21
 * questions.
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    22
 */
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    23
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    24
/*
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    25
 * @test
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    26
 * @bug 8209022
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    27
 * @run testng TypeVariableCastTest
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    28
 * @summary Missing checkcast when casting to type parameter bounded by intersection type
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    29
 */
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    30
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    31
import java.util.*;
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    32
import org.testng.annotations.Test;
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    33
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    34
@Test
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    35
public class TypeVariableCastTest {
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    36
    static <T extends List<?> & Runnable> void f() {
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    37
        Runnable r = (T) new ArrayList<>();
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    38
    }
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    39
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    40
    static <T extends Runnable & List<?>> void g() {
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    41
        Runnable r = (T) new ArrayList<>();
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    42
    }
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    43
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    44
    @Test(expectedExceptions = ClassCastException.class)
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    45
    static void testMethodF() {
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    46
        f();
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    47
    }
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    48
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    49
    @Test(expectedExceptions = ClassCastException.class)
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    50
    static void testMethodG() {
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    51
        g();
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    52
    }
07179f7db03d 8209022: Missing checkcast when casting to type parameter bounded by intersection type
vromero
parents:
diff changeset
    53
}